forked from mirrors/nixpkgs
jasper: 2.0.12 -> 2.0.13, fixes CVE-2017-6850
This commit is contained in:
parent
3628ce4d67
commit
fcf205024a
|
@ -1,14 +1,14 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, libjpeg, cmake }:
|
{ stdenv, fetchFromGitHub, fetchpatch, libjpeg, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "jasper-2.0.12";
|
name = "jasper-${version}";
|
||||||
|
version = "2.0.13";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
# You can find this code on Github at https://github.com/mdadams/jasper
|
repo = "jasper";
|
||||||
# however note at https://www.ece.uvic.ca/~frodo/jasper/#download
|
owner = "mdadams";
|
||||||
# not all tagged releases are for distribution.
|
rev = "version-${version}";
|
||||||
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.tar.gz";
|
sha256 = "1kd2xiszg9bxfavs3fadi4gi27m876d9zjjy0ns6mmbcjk109c0a";
|
||||||
sha256 = "1njdbxv7d4anzrd476wjww2qsi96dd8vfnp4hri0srrqxpszl92v";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# newer reconf to recognize a multiout flag
|
# newer reconf to recognize a multiout flag
|
||||||
|
@ -29,5 +29,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
||||||
description = "JPEG2000 Library";
|
description = "JPEG2000 Library";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue