Applying the patch from Rok Garbas to add GIMP 2.8.0

svn path=/nixpkgs/trunk/; revision=34352
This commit is contained in:
Cillian de Roiste
2012-06-04 17:38:47 +00:00
parent 104bd01e1d
commit 27bef25b17
5 changed files with 86 additions and 1 deletions
@@ -0,0 +1,16 @@
{ 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";
};
}