88c9f8b574
This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
30 lines
718 B
Nix
30 lines
718 B
Nix
{ stdenv, fetchurl, unzip, xorg, libjpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jasper-1.900.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.zip";
|
|
sha256 = "154l7zk7yh3v8l2l6zm5s2alvd2fzkp6c9i18iajfbna5af5m43b";
|
|
};
|
|
|
|
patches = [
|
|
./jasper-CVE-2014-8137-variant2.diff
|
|
./jasper-CVE-2014-8137-noabort.diff
|
|
./jasper-CVE-2014-8138.diff
|
|
./jasper-CVE-2014-8157.diff
|
|
./jasper-CVE-2014-8158.diff
|
|
./jasper-CVE-2014-9029.diff
|
|
];
|
|
|
|
nativeBuildInputs = [unzip];
|
|
propagatedBuildInputs = [ libjpeg ];
|
|
|
|
configureFlags = "--enable-shared";
|
|
|
|
meta = {
|
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
|
description = "JPEG2000 Library";
|
|
};
|
|
}
|