34 lines
914 B
Nix
34 lines
914 B
Nix
{ stdenv, fetchurl, fetchpatch, libjpeg, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jasper-2.0.10";
|
|
|
|
src = fetchurl {
|
|
# You can find this code on Github at https://github.com/mdadams/jasper
|
|
# however note at https://www.ece.uvic.ca/~frodo/jasper/#download
|
|
# not all tagged releases are for distribution.
|
|
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.tar.gz";
|
|
sha256 = "1s022mfxyw8jw60fgyj60lbm9h6bc4nk2751b0in8qsjwcl59n2l";
|
|
};
|
|
|
|
# newer reconf to recognize a multiout flag
|
|
nativeBuildInputs = [ cmake ];
|
|
propagatedBuildInputs = [ libjpeg ];
|
|
|
|
configureFlags = "--enable-shared";
|
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
moveToOutput bin "$bin"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
|
description = "JPEG2000 Library";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|