nixpkgs/pkgs/applications/graphics/fig2dev/default.nix
2020-04-10 17:54:53 +01:00

27 lines
568 B
Nix

{ stdenv, fetchurl, ghostscript, libpng } :
let
version = "3.2.7b";
in stdenv.mkDerivation {
pname = "fig2dev";
inherit version;
src = fetchurl {
url = "mirror://sourceforge/mcj/fig2dev-${version}.tar.xz";
sha256 = "1ck8gnqgg13xkxq4hrdy706i4xdgrlckx6bi6wxm1g514121pp27";
};
buildInputs = [ libpng ];
GSEXE="${ghostscript}/bin/gs";
meta = with stdenv.lib; {
description = "Tool to convert Xfig files to other formats";
homepage = "http://mcj.sourceforge.net/";
license = licenses.xfig;
platforms = platforms.linux;
};
}