2016-10-05 11:59:10 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, libjpeg, autoreconfHook }:
|
2009-03-20 16:27:32 +00:00
|
|
|
|
2008-01-28 19:41:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-10-05 11:59:10 +01:00
|
|
|
name = "jasper-1.900.2";
|
2008-01-28 19:41:03 +00:00
|
|
|
|
2009-03-20 16:27:32 +00:00
|
|
|
src = fetchurl {
|
2016-10-05 11:59:10 +01:00
|
|
|
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.tar.gz";
|
|
|
|
sha256 = "0bkibjhq3js2ldxa2f9pss84lcx4f5d3v0qis3ifi11ciy7a6c9a";
|
2009-03-20 16:27:32 +00:00
|
|
|
};
|
2008-01-28 19:41:03 +00:00
|
|
|
|
2014-12-21 22:36:29 +00:00
|
|
|
patches = [
|
2015-02-04 10:37:49 +00:00
|
|
|
./jasper-CVE-2014-8137-variant2.diff
|
|
|
|
./jasper-CVE-2014-8137-noabort.diff
|
2016-10-05 11:59:10 +01:00
|
|
|
|
2016-09-27 13:51:57 +01:00
|
|
|
(fetchpatch { # CVE-2016-2089
|
|
|
|
url = "https://github.com/mdadams/jasper/commit/aa6d9c2bbae9155f8e1466295373a68fa97291c3.patch";
|
|
|
|
sha256 = "1pxnm86zmbq6brfwsm5wx3iv7s92n4xilc52lzp61q266jmlggrf";
|
|
|
|
})
|
|
|
|
(fetchpatch { # CVE-2015-5203
|
|
|
|
url = "https://github.com/mdadams/jasper/commit/e73bb58f99fec0bf9c5d8866e010fcf736a53b9a.patch";
|
|
|
|
sha256 = "1r6hxbnhpnb7q6p2kbdxc1cpph3ic851x2hy477yv5c3qmrbx9bk";
|
|
|
|
})
|
2014-12-21 22:36:29 +00:00
|
|
|
];
|
2014-12-21 22:26:53 +00:00
|
|
|
|
2015-10-03 13:37:07 +01:00
|
|
|
# newer reconf to recognize a multiout flag
|
2016-10-05 11:59:10 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2012-01-16 17:36:59 +00:00
|
|
|
propagatedBuildInputs = [ libjpeg ];
|
2009-04-22 08:05:09 +01:00
|
|
|
|
|
|
|
configureFlags = "--enable-shared";
|
2013-06-11 12:41:33 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2013-06-11 12:41:33 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-03-20 16:27:32 +00:00
|
|
|
meta = {
|
2014-12-21 22:26:53 +00:00
|
|
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "JPEG2000 Library";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-03-20 16:27:32 +00:00
|
|
|
};
|
2008-01-28 19:41:03 +00:00
|
|
|
}
|