nixpkgs/pkgs/development/libraries/jasper/default.nix

46 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, libjpeg, cmake }:
stdenv.mkDerivation rec {
name = "jasper-${version}";
2017-11-10 20:47:21 +00:00
version = "2.0.14";
src = fetchFromGitHub {
repo = "jasper";
owner = "mdadams";
rev = "version-${version}";
2017-11-10 20:47:21 +00:00
sha256 = "0aarg8nbik9wrm7fx0451sbm5ypfdfr6i169pxzi354mpdp8gg7f";
};
patches = [
(fetchpatch {
name = "CVE-2018-9055.patch";
url = "http://paste.opensuse.org/view/raw/330751ce";
sha256 = "0m798m6c4v9yyhql7x684j5kppcm6884n1rrb9ljz8p9aqq2jqnm";
})
];
2015-10-03 12:37:07 +00:00
# newer reconf to recognize a multiout flag
2016-12-14 12:38:51 +00:00
nativeBuildInputs = [ cmake ];
propagatedBuildInputs = [ libjpeg ];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--enable-shared" ];
outputs = [ "bin" "dev" "out" "man" ];
enableParallelBuilding = true;
doCheck = false; # fails
2016-12-14 12:38:51 +00:00
postInstall = ''
moveToOutput bin "$bin"
'';
2017-03-25 20:10:32 +00:00
meta = with stdenv.lib; {
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
description = "JPEG2000 Library";
2017-03-25 20:10:32 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}