aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-23 19:48:56 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-23 19:48:56 -0700
commitd2bf361fd475ed8155e98b65e40e8ecf7dc2a784 (patch)
treed15679a912550c925b93338069939660c8976f8f /users/fcuny
parentref(resume): remove unneeded files for my resume (diff)
downloadinfra-d2bf361fd475ed8155e98b65e40e8ecf7dc2a784.tar.gz
feat(resume): set the version using the date
Diffstat (limited to 'users/fcuny')
-rw-r--r--users/fcuny/resume/flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/fcuny/resume/flake.nix b/users/fcuny/resume/flake.nix
index fbb2755..243fdde 100644
--- a/users/fcuny/resume/flake.nix
+++ b/users/fcuny/resume/flake.nix
@@ -11,8 +11,9 @@
in {
defaultPackage = pkgs.stdenv.mkDerivation {
name = "resume";
- buildInputs = with pkgs; [ pandoc ];
+ version = self.lastModifiedDate;
src = ./.;
+ buildInputs = with pkgs; [ pandoc ];
buildPhase = ''
pandoc --self-contained --css styles/resume.css --from org --to html --output resume.html readme.org
'';