diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | users/fcuny/resume/flake.nix | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 698c49d..eff3459 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /users/fcuny/blog/.hugo_build.lock /users/fcuny/notes/.hugo_build.lock +/users/fcuny/resume/result 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 ''; |