3
0
Fork 0
forked from mirrors/nixpkgs

jasper: 2.0.12 -> 2.0.13, fixes CVE-2017-6850

This commit is contained in:
Pascal Wittmann 2017-06-14 20:14:07 +02:00
parent 3628ce4d67
commit fcf205024a
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -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 ];
}; };
} }