libicns claims it can use openjpeg at build time, but at run time says it's not supported. Use jasper instead

svn path=/nixpkgs/trunk/; revision=33482
This commit is contained in:
Shea Levy 2012-03-30 01:42:13 +00:00
parent ef084be97b
commit b7f90b3406

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libpng, openjpeg }:
{ stdenv, fetchurl, libpng, jasper }:
stdenv.mkDerivation {
name = "libicns-0.8.0";
@ -8,5 +8,5 @@ stdenv.mkDerivation {
sha256 = "0jh67nm07jr1nfkfjid3jjw7fyw5hvj6a2fqan1bhg6gyr2hswla";
};
buildInputs = [ libpng openjpeg ];
buildInputs = [ libpng jasper ];
}