35 lines
808 B
Nix
35 lines
808 B
Nix
{ stdenv, fetchFromGitHub, fetchpatch, libjpeg, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jasper-${version}";
|
|
version = "2.0.14";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "jasper";
|
|
owner = "mdadams";
|
|
rev = "version-${version}";
|
|
sha256 = "0aarg8nbik9wrm7fx0451sbm5ypfdfr6i169pxzi354mpdp8gg7f";
|
|
};
|
|
|
|
# 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 = with stdenv.lib; {
|
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
|
description = "JPEG2000 Library";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|