summary refs log tree commit diff
path: root/pkgs/applications/graphics/fig2dev/default.nix
blob: c364badc1742f4f72e89c40fcb2e3df2763ff8b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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;
  };
}