nixpkgs/pkgs/applications/misc/gv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libXext, Xaw3d, ghostscriptX, perl, pkg-config, libiconv }:
stdenv.mkDerivation rec {
pname = "gv";
version = "3.7.4";
src = fetchurl {
url = "mirror://gnu/gv/gv-${version}.tar.gz";
2013-03-18 10:36:16 +00:00
sha256 = "0q8s43z14vxm41pfa8s5h9kyyzk1fkwjhkiwbf2x70alm6rv6qi1";
};
2021-01-15 05:42:41 +00:00
configureFlags = lib.optionals stdenv.isDarwin [
2018-04-19 23:20:05 +00:00
"--enable-SIGCHLD-fallback"
];
nativeBuildInputs = [ pkg-config ];
2018-04-19 23:20:05 +00:00
buildInputs = [
libXext
2018-04-19 23:20:05 +00:00
Xaw3d
ghostscriptX
perl
2021-01-15 05:42:41 +00:00
] ++ lib.optionals stdenv.isDarwin [
2018-04-19 23:20:05 +00:00
libiconv
];
patchPhase = ''
sed 's|\<gs\>|${ghostscriptX}/bin/gs|g' -i "src/"*.in
sed 's|"gs"|"${ghostscriptX}/bin/gs"|g' -i "src/"*.c
'';
doCheck = true;
meta = {
homepage = "https://www.gnu.org/software/gv/";
description = "PostScript/PDF document viewer";
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.
'';
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl3Plus;
2013-08-16 21:44:33 +00:00
maintainers = [ ];
2021-01-15 05:42:41 +00:00
platforms = lib.platforms.unix;
};
}