summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/groff
diff options
context:
space:
mode:
authorAlexander Kjeldaas <ak@formalprivacy.com>2014-04-09 15:09:06 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-09-13 15:06:59 +0200
commit7141303c998942f04dec761555c5944f309658d2 (patch)
tree269c92df9f6c531f5e71e7dddf2e92a5a9058743 /pkgs/tools/text/groff
parente431a3e0b592b772c81cde81be09d47b1c9b4622 (diff)
groff, opensp: make deterministic
Diffstat (limited to 'pkgs/tools/text/groff')
-rw-r--r--pkgs/tools/text/groff/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/tools/text/groff/default.nix b/pkgs/tools/text/groff/default.nix
index 97cc3c611733..cd1d719bdaf5 100644
--- a/pkgs/tools/text/groff/default.nix
+++ b/pkgs/tools/text/groff/default.nix
@@ -28,6 +28,14 @@ stdenv.mkDerivation rec {
'';
};
+ postInstall = ''
+ # Remove example output with (random?) colors to
+ # avoid non-determinism in the output
+ rm $out/share/doc/${name}/examples/hdtbl/*color*ps
+ # Remove creation date
+ find $out/share/doc/${name} -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//'
+ '';
+
meta = {
homepage = "http://www.gnu.org/software/groff/";
description = "GNU Troff, a typesetting package that reads plain text and produces formatted output";