summary refs log tree commit diff
path: root/pkgs/development/libraries/babl/default.nix
blob: d00e3f67f3cc055705e16598c5b9c7554e097352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args:
args.stdenv.mkDerivation {
  name = "babl-0.0.22";

  src = args.fetchurl {
    url = ftp://ftp.gtk.org/pub/babl/0.0/babl-0.0.22.tar.bz2;
    sha256 = "0v8gbf9si4sd06199f8lfmrsbvi6i0hxphd34kyvsj6g2kkkg10s";
  };

  buildInputs =(with args; []);

  meta = { 
      description = "image pixel format coneversion libraray";
      homepage = http://gegl.org/babl/;
      license = "GPL3";
  };
}