nixpkgs/pkgs/development/libraries/babl/default.nix

21 lines
501 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "babl-0.1.44";
src = fetchurl {
url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
sha256 = "0zfy1jrwdp4ja2f1rqa2m46vx6nilm73f72d4d1c8d65vshgsqzl";
};
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;
};
}