3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/babl/default.nix

21 lines
501 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2018-01-29 13:13:13 +00:00
name = "babl-0.1.42";
src = fetchurl {
url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
2018-01-29 13:13:13 +00:00
sha256 = "1wc7fyj9bfqfiwf1w33g3vv3wcl18pd9cxr9fc0iy391szrsynb8";
};
2017-12-05 23:14:27 +00:00
doCheck = true;
meta = with stdenv.lib; {
description = "Image pixel format conversion library";
homepage = http://gegl.org/babl/;
2017-03-11 03:15:02 +00:00
license = licenses.gpl3;
2017-12-05 23:14:27 +00:00
maintainers = with stdenv.lib.maintainers; [ jtojnar ];
2017-03-11 03:15:02 +00:00
platforms = platforms.unix;
};
}