a7949741f6
- rename package from gimp_2_8_0 to gimp_2_8 as discussed on mailing list[1] - remove babl_0_1_10 and gegl_0_2_0 and use them as default versions [1] http://article.gmane.org/gmane.linux.distributions.nixos/8708 svn path=/nixpkgs/trunk/; revision=34444
17 lines
378 B
Nix
17 lines
378 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "babl-0.1.10";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
|
|
sha256 = "943fc36ceac7dd25bc928256bc7b535a42989c6b971578146869eee5fe5955f4";
|
|
};
|
|
|
|
meta = {
|
|
description = "Image pixel format conversion library";
|
|
homepage = http://gegl.org/babl/;
|
|
license = "GPL3";
|
|
};
|
|
}
|