2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2011-10-05 15:45:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-11 03:15:02 +00:00
|
|
|
name = "babl-0.1.24";
|
2008-04-04 16:11:27 +01:00
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2015-04-01 18:52:45 +01:00
|
|
|
url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
|
2017-03-11 03:15:02 +00:00
|
|
|
sha256 = "02wxyaa9kjfypmg31avp2dxh16sfx9701ww6dmp0ggz5vnng2as7";
|
2008-04-04 16:11:27 +01:00
|
|
|
};
|
|
|
|
|
2017-03-11 03:15:02 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Image pixel format conversion library";
|
|
|
|
homepage = http://gegl.org/babl/;
|
2017-03-11 03:15:02 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
2008-04-04 16:11:27 +01:00
|
|
|
};
|
|
|
|
}
|