nixpkgs/pkgs/development/libraries/lcms2/default.nix
Vladimír Čunát 538990d475 lcms2: update the hash
Upstream changed one line in the source, without bumping the version.
2013-08-22 12:33:03 +02:00

21 lines
515 B
Nix

{stdenv, fetchurl, libtiff, libjpeg, zlib}:
stdenv.mkDerivation rec {
name = "lcms2-2.5";
src = fetchurl {
url = "mirror://sourceforge/lcms/${name}.tar.gz";
sha256 = "0ax71bmscjzlpmg1r8vj3dypxf2jr7j9qfx5vc8j22j78hmpf9v7";
};
propagatedBuildInputs = [ libtiff libjpeg zlib ];
meta = {
description = "Color management engine";
homepage = http://www.littlecms.com/;
license = "MIT";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}