groff: Fix multiple-output build

This commit is contained in:
Tuomas Tynkkynen 2015-08-20 15:54:55 +03:00 committed by Vladimír Čunát
parent 15471a8659
commit a39f5839ea

View File

@ -35,9 +35,9 @@ 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
rm $doc/share/doc/examples/hdtbl/*color*ps
# Remove creation date
find $out/share/doc/${name} -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//'
find $doc/share/doc/ -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//'
'';
meta = with stdenv.lib; {