nixpkgs/pkgs/applications/graphics/xfig/default.nix

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

71 lines
1.6 KiB
Nix
Raw Normal View History

2021-02-03 05:05:49 +01:00
{ lib
, stdenv
, fetchurl
, makeWrapper
, imagemagick
2021-02-03 05:05:49 +01:00
, libXpm
, libXmu
, libXi
, libXp
, Xaw3d
, libXaw
, libXft
2021-02-03 05:05:49 +01:00
, fig2dev
}:
2021-01-20 22:29:43 +01:00
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "xfig";
version = "3.2.9";
src = fetchurl {
url = "mirror://sourceforge/mcj/xfig-${version}.tar.xz";
hash = "sha256-E+2dBNG7wt7AnafvSc7sJ4OC0pD2zZJkdMLy0Bb+wvc=";
};
nativeBuildInputs = [ imagemagick makeWrapper ];
2021-02-03 05:05:49 +01:00
buildInputs = [
libXpm
libXmu
libXi
libXp
Xaw3d
libXaw
libXft
2021-02-03 05:05:49 +01:00
];
postPatch = ''
substituteInPlace src/main.c --replace '"fig2dev"' '"${fig2dev}/bin/fig2dev"'
substituteInPlace xfig.desktop --replace "/usr/bin/" "$out/bin/"
'';
postInstall = ''
mkdir -p $out/share/X11/app-defaults
cp app-defaults/* $out/share/X11/app-defaults
wrapProgram $out/bin/xfig \
--set XAPPLRESDIR $out/share/X11/app-defaults
mkdir -p $out/share/icons/hicolor/{16x16,22x22,48x48,64x64}/apps
for dimension in 16x16 22x22 48x48; do
convert doc/html/images/xfig-logo.png -geometry $dimension\
$out/share/icons/hicolor/16x16/apps/xfig.png
done
install doc/html/images/xfig-logo.png \
$out/share/icons/hicolor/64x64/apps/xfig.png
'';
enableParallelBuilding = true;
2016-02-20 23:00:56 +01:00
meta = with lib; {
changelog = "https://sourceforge.net/p/mcj/xfig/ci/${version}/tree/CHANGES";
description = "An interactive drawing tool for X11";
longDescription = ''
Note that you need to have the <literal>netpbm</literal> tools
in your path to export bitmaps.
'';
2021-01-20 22:29:43 +01:00
inherit (fig2dev.meta) license homepage platforms maintainers;
};
}