python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / gv / default.nix
blobd5aa1ac88179c279b2812afbae1556b21f729cc5
1 { lib, stdenv, fetchurl, 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     Xaw3d
19     ghostscriptX
20     perl
21   ] ++ lib.optionals stdenv.isDarwin [
22     libiconv
23   ];
25   patchPhase = ''
26     sed 's|\<gs\>|${ghostscriptX}/bin/gs|g' -i "src/"*.in
27     sed 's|"gs"|"${ghostscriptX}/bin/gs"|g' -i "src/"*.c
28   '';
30   doCheck = true;
32   meta = {
33     homepage = "https://www.gnu.org/software/gv/";
34     description = "PostScript/PDF document viewer";
36     longDescription = ''
37       GNU gv allows users to view and navigate through PostScript and
38       PDF documents on an X display by providing a graphical user
39       interface for the Ghostscript interpreter.
40     '';
42     license = lib.licenses.gpl3Plus;
43     maintainers = [ ];
44     platforms = lib.platforms.unix;
45   };