diff options
author | Justin Bedo <cu@cua0.org> | 2020-11-09 09:19:54 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2020-11-09 09:21:13 +1100 |
commit | 2e530544f6b209b8e96cac971cd57b04bf36b109 (patch) | |
tree | 5edc442bd6ff0aa863860465496a5c4f31dee0c6 /default.nix | |
parent | 9e8c2961500ef2be3e8138795629b2cdf9128037 (diff) |
patch author and title metadata
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 |