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.46";
src = fetchurl {
url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
sha256 = "0nwyhvfca6m35wjcccvwca7fcihzgdfyc012qi703y5d3cxl1hmv";
};
2017-12-06 02:14:27 +03:00
doCheck = true;
meta = with stdenv.lib; {
description = "Image pixel format conversion library";
homepage = http://gegl.org/babl/;
2017-03-11 06:15:02 +03:00
license = licenses.gpl3;
2017-12-06 02:14:27 +03:00
maintainers = with stdenv.lib.maintainers; [ jtojnar ];
2017-03-11 06:15:02 +03:00
platforms = platforms.unix;
};
}