2010-06-10 21:52:34 +00:00
|
|
|
{ stdenv, fetchurl, Xaw3d, ghostscriptX, perl }:
|
2007-08-14 14:09:58 +00:00
|
|
|
|
2011-12-05 19:58:19 +00:00
|
|
|
let
|
2013-03-18 10:36:16 +00:00
|
|
|
name = "gv-3.7.4";
|
2011-12-05 19:58:19 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2007-08-14 14:09:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-06-01 16:51:03 +00:00
|
|
|
url = "mirror://gnu/gv/${name}.tar.gz";
|
2013-03-18 10:36:16 +00:00
|
|
|
sha256 = "0q8s43z14vxm41pfa8s5h9kyyzk1fkwjhkiwbf2x70alm6rv6qi1";
|
2007-08-14 14:09:58 +00:00
|
|
|
};
|
|
|
|
|
2010-06-10 21:52:34 +00:00
|
|
|
buildInputs = [ Xaw3d ghostscriptX perl ];
|
2010-01-08 09:31:01 +00:00
|
|
|
|
2009-03-23 15:42:14 +00:00
|
|
|
patchPhase = ''
|
2010-01-08 09:31:01 +00:00
|
|
|
sed 's|\<gs\>|${ghostscriptX}/bin/gs|g' -i "src/"*.in
|
|
|
|
sed 's|"gs"|"${ghostscriptX}/bin/gs"|g' -i "src/"*.c
|
2009-01-12 11:12:17 +00:00
|
|
|
'';
|
2007-08-14 14:09:58 +00:00
|
|
|
|
2008-06-01 16:51:03 +00:00
|
|
|
doCheck = true;
|
2008-01-30 19:49:42 +00:00
|
|
|
|
|
|
|
meta = {
|
2008-06-01 16:51:03 +00:00
|
|
|
homepage = http://www.gnu.org/software/gv/;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "PostScript/PDF document viewer";
|
2009-03-23 15:42:14 +00: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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2010-01-08 09:31:01 +00:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-08-14 14:09:58 +00:00
|
|
|
}
|