a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
31 lines
681 B
Nix
31 lines
681 B
Nix
{stdenv, fetchurl, zlib, libjpeg, libpng, imake}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "transfig-3.2.4";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.tex.ac.uk/pub/archive/graphics/transfig/transfig.3.2.4.tar.gz;
|
|
md5 = "742de0f7a3cae74d247bbd0c70dd9dd7";
|
|
};
|
|
|
|
buildInputs = [zlib libjpeg libpng imake];
|
|
inherit libpng;
|
|
|
|
patches = [prefixPatch1 prefixPatch2 prefixPatch3 varargsPatch gensvgPatch];
|
|
|
|
prefixPatch1 =
|
|
./patch-fig2dev-dev-Imakefile;
|
|
|
|
prefixPatch2 =
|
|
./patch-fig2dev-Imakefile;
|
|
|
|
prefixPatch3 =
|
|
./patch-transfig-Imakefile;
|
|
|
|
varargsPatch =
|
|
./patch-fig2dev-fig2dev.h;
|
|
|
|
gensvgPatch =
|
|
./patch-fig2dev-dev-gensvg.c;
|
|
}
|