diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 5ba0079..963aa61 100644 --- a/default.nix +++ b/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation { buildInputs = with pkgs; [ exiftool (callPackage ./tex.nix {}) ]; buildPhase = '' latexmk -xelatex slides - ${lib.optionalString (rev != null) "exiftool -Producer='${rev}' slides.pdf"} + ${lib.optionalString (rev != null) "exiftool -Producer='${rev}' -Author='Justin Bedő' -Title='BioNix: functional, reproducible bioinformatics workflows' slides.pdf"} ''; installPhase = '' mkdir -p $out |