2010-06-10 23:52:34 +02:00
|
|
|
{ stdenv, fetchurl, Xaw3d, ghostscriptX, perl }:
|
2007-08-14 16:09:58 +02:00
|
|
|
|
2011-12-05 20:58:19 +01:00
|
|
|
let
|
2013-03-18 11:36:16 +01:00
|
|
|
name = "gv-3.7.4";
|
2011-12-05 20:58:19 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2007-08-14 16:09:58 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-06-01 18:51:03 +02:00
|
|
|
url = "mirror://gnu/gv/${name}.tar.gz";
|
2013-03-18 11:36:16 +01:00
|
|
|
sha256 = "0q8s43z14vxm41pfa8s5h9kyyzk1fkwjhkiwbf2x70alm6rv6qi1";
|
2007-08-14 16:09:58 +02:00
|
|
|
};
|
|
|
|
|
2010-06-10 23:52:34 +02:00
|
|
|
buildInputs = [ Xaw3d ghostscriptX perl ];
|
2010-01-08 10:31:01 +01:00
|
|
|
|
2009-03-23 16:42:14 +01:00
|
|
|
patchPhase = ''
|
2010-01-08 10:31:01 +01:00
|
|
|
sed 's|\<gs\>|${ghostscriptX}/bin/gs|g' -i "src/"*.in
|
|
|
|
sed 's|"gs"|"${ghostscriptX}/bin/gs"|g' -i "src/"*.c
|
2009-01-12 12:12:17 +01:00
|
|
|
'';
|
2007-08-14 16:09:58 +02:00
|
|
|
|
2008-06-01 18:51:03 +02:00
|
|
|
doCheck = true;
|
2008-01-30 20:49:42 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-06-01 18:51:03 +02:00
|
|
|
homepage = http://www.gnu.org/software/gv/;
|
|
|
|
description = "GNU gv, a PostScript/PDF document viewer";
|
2009-03-23 16:42:14 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU gv allows users to view and navigate through PostScript and
|
|
|
|
PDF documents on an X display by providing a graphical user
|
|
|
|
interface for the Ghostscript interpreter.
|
|
|
|
'';
|
|
|
|
|
2009-01-12 12:12:17 +01:00
|
|
|
license = "GPLv3+";
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2010-01-08 10:31:01 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2007-08-14 16:09:58 +02:00
|
|
|
}
|