nixpkgs/pkgs/development/libraries/babl/default.nix
Ryan Mulligan 20c5476a8b
babl: 0.1.42 -> 0.1.44
Semi-automatic update. The following tests were automatically performed:

- built on NixOS
- found 0.1.44 with grep in /nix/store/wm1yfyjhfmx2030cvmvx1k5wnizdgcfc-babl-0.1.44
2018-02-25 17:14:59 +01:00

21 lines
501 B
Nix

{ 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";
};
doCheck = true;
meta = with stdenv.lib; {
description = "Image pixel format conversion library";
homepage = http://gegl.org/babl/;
license = licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}