tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
groff: update from 1.22.2 to 1.22.3 an adopt it
Pascal Wittmann
11 years ago
7862ef25
6e3318e2
+7
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
groff
default.nix
+7
-6
pkgs/tools/text/groff/default.nix
···
1
{ stdenv, fetchurl, ghostscript, perl, groff }:
2
3
stdenv.mkDerivation rec {
4
-
name = "groff-1.22.2";
5
6
src = fetchurl {
7
url = "mirror://gnu/groff/${name}.tar.gz";
8
-
sha256 = "0xi07nhj5vdgax37rj25mwxzdmsz1ifx50hjgc6hqbkpqkd6821q";
9
};
10
11
buildInputs = [ ghostscript ];
···
36
find $out/share/doc/${name} -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//'
37
'';
38
39
-
meta = {
40
-
homepage = "http://www.gnu.org/software/groff/";
41
description = "GNU Troff, a typesetting package that reads plain text and produces formatted output";
42
-
license = stdenv.lib.licenses.gpl3Plus;
43
-
platforms = stdenv.lib.platforms.all;
0
44
45
longDescription = ''
46
groff is the GNU implementation of troff, a document formatting
···
1
{ stdenv, fetchurl, ghostscript, perl, groff }:
2
3
stdenv.mkDerivation rec {
4
+
name = "groff-1.22.3";
5
6
src = fetchurl {
7
url = "mirror://gnu/groff/${name}.tar.gz";
8
+
sha256 = "1998v2kcs288d3y7kfxpvl369nqi06zbbvjzafyvyl3pr7bajj1s";
9
};
10
11
buildInputs = [ ghostscript ];
···
36
find $out/share/doc/${name} -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//'
37
'';
38
39
+
meta = with stdenv.lib; {
40
+
homepage = http://www.gnu.org/software/groff/;
41
description = "GNU Troff, a typesetting package that reads plain text and produces formatted output";
42
+
license = licenses.gpl3Plus;
43
+
platforms = platforms.all;
44
+
maintainers = with maintainers; [ pSub ];
45
46
longDescription = ''
47
groff is the GNU implementation of troff, a document formatting