Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / gv / default.nix
blobca12e3bc77a9c6e4d3577687d33fee3d677037d3
1 { lib, stdenv, fetchurl, libXext, Xaw3d, ghostscriptX, perl, pkg-config, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "gv";
5   version = "3.7.4";
7   src = fetchurl {
8     url = "mirror://gnu/gv/gv-${version}.tar.gz";
9     sha256 = "0q8s43z14vxm41pfa8s5h9kyyzk1fkwjhkiwbf2x70alm6rv6qi1";
10   };
12   configureFlags = lib.optionals stdenv.isDarwin [
13     "--enable-SIGCHLD-fallback"
14   ];
16   nativeBuildInputs = [ pkg-config ];
17   buildInputs = [
18     libXext
19     Xaw3d
20     ghostscriptX
21     perl
22   ] ++ lib.optionals stdenv.isDarwin [
23     libiconv
24   ];
26   patchPhase = ''
27     sed 's|\<gs\>|${ghostscriptX}/bin/gs|g' -i "src/"*.in
28     sed 's|"gs"|"${ghostscriptX}/bin/gs"|g' -i "src/"*.c
29   '';
31   doCheck = true;
33   meta = {
34     homepage = "https://www.gnu.org/software/gv/";
35     description = "PostScript/PDF document viewer";
37     longDescription = ''
38       GNU gv allows users to view and navigate through PostScript and
39       PDF documents on an X display by providing a graphical user
40       interface for the Ghostscript interpreter.
41     '';
43     license = lib.licenses.gpl3Plus;
44     maintainers = [ ];
45     platforms = lib.platforms.unix;
46   };