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

21 lines
501 B
Nix
Raw Normal View History

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