cc4a5073e2
mupdf doesn't compile with 2.1 due to API changes cc @codyopel who made the openjpeg update
10 lines
299 B
Nix
10 lines
299 B
Nix
{ callPackage, fetchurl, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "${branch}.0.1";
|
|
branch = "2";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/openjpeg.mirror/openjpeg-${version}.tar.gz";
|
|
sha256 = "1c2xc3nl2mg511b63rk7hrckmy14681p1m44mzw3n1fyqnjm0b0z";
|
|
};
|
|
})
|