mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
ebacd32b71
* gnuplot 4.2.2. svn path=/nixpkgs/trunk/; revision=9354
22 lines
555 B
Nix
22 lines
555 B
Nix
{stdenv, fetchurl, zlib, libpng, freetype, libjpeg, fontconfig}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gd-2.0.35";
|
|
|
|
src = fetchurl {
|
|
url = http://www.libgd.org/releases/gd-2.0.35.tar.bz2;
|
|
sha256 = "1y80lcmb8qbzf0a28841zxhq9ndfapmh2fsrqfd9lalxfj8288mz";
|
|
};
|
|
|
|
buildInputs = [zlib libpng freetype];
|
|
|
|
propagatedBuildInputs = [libjpeg fontconfig]; # urgh
|
|
|
|
configureFlags = "--without-x";
|
|
|
|
meta = {
|
|
homepage = http://www.libgd.org/;
|
|
description = "An open source code library for the dynamic creation of images by programmers";
|
|
};
|
|
}
|