biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / graphics / xfig / default.nix
blob1929bff925fbace2c1d4d805235d4227c9e75536
1 { lib
2 , stdenv
3 , fetchurl
4 , makeWrapper
5 , imagemagick
6 , libXpm
7 , libXmu
8 , libXi
9 , libXp
10 , Xaw3d
11 , libXaw
12 , libXft
13 , fig2dev
16 stdenv.mkDerivation rec {
17   pname = "xfig";
18   version = "3.2.9";
20   src = fetchurl {
21     url = "mirror://sourceforge/mcj/xfig-${version}.tar.xz";
22     hash = "sha256-E+2dBNG7wt7AnafvSc7sJ4OC0pD2zZJkdMLy0Bb+wvc=";
23   };
25   nativeBuildInputs = [ imagemagick makeWrapper ];
27   buildInputs = [
28     libXpm
29     libXmu
30     libXi
31     libXp
32     Xaw3d
33     libXaw
34     libXft
35   ];
37   postPatch = ''
38     substituteInPlace src/main.c --replace '"fig2dev"' '"${fig2dev}/bin/fig2dev"'
39     substituteInPlace xfig.desktop --replace "/usr/bin/" "$out/bin/"
40   '';
42   postInstall = ''
43     mkdir -p $out/share/X11/app-defaults
44     cp app-defaults/* $out/share/X11/app-defaults
46     wrapProgram $out/bin/xfig \
47       --set XAPPLRESDIR $out/share/X11/app-defaults
49     mkdir -p $out/share/icons/hicolor/{16x16,22x22,48x48,64x64}/apps
51     for dimension in 16x16 22x22 48x48; do
52       convert doc/html/images/xfig-logo.png -geometry $dimension\
53         $out/share/icons/hicolor/16x16/apps/xfig.png
54     done
55     install doc/html/images/xfig-logo.png \
56       $out/share/icons/hicolor/64x64/apps/xfig.png
57   '';
59   enableParallelBuilding = true;
61   meta = with lib; {
62     changelog = "https://sourceforge.net/p/mcj/xfig/ci/${version}/tree/CHANGES";
63     description = "Interactive drawing tool for X11";
64     mainProgram = "xfig";
65     longDescription = ''
66       Note that you need to have the <literal>netpbm</literal> tools
67       in your path to export bitmaps.
68     '';
69     inherit (fig2dev.meta) license homepage platforms maintainers;
70   };