Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
jhead: add patches for CVE-2019-1010301, CVE-2019-1010302
Browse files Browse the repository at this point in the history
  • Loading branch information
risicle committed Oct 31, 2019
1 parent 08884d6 commit 7dacaa0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pkgs/tools/graphics/jhead/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libjpeg }:
{ stdenv, fetchurl, fetchpatch, libjpeg }:

stdenv.mkDerivation rec {
pname = "jhead";
Expand All @@ -9,6 +9,19 @@ stdenv.mkDerivation rec {
sha256 = "1hn0yqcicq3qa20h1g313l1a671r8mccpb9gz0w1056r500lw6c2";
};

patches = [
(fetchpatch {
name = "CVE-2019-1010301.patch";
url = "https://sources.debian.org/data/main/j/jhead/1:3.03-3/debian/patches/36_CVE-2019-1010301";
sha256 = "1vvrg50z5y7sjhfi973wh1q1v79sqp7hk5d4z0dlnx3fqgkjrx7q";
})
(fetchpatch {
name = "CVE-2019-1010302.patch";
url = "https://sources.debian.org/data/main/j/jhead/1:3.03-3/debian/patches/37_CVE-2019-1010302";
sha256 = "1h11mpsi7hpwbi8kpnkjwn6zpqf88f132h0rsg8sggcs3vva2x8y";
})
];

buildInputs = [ libjpeg ];

patchPhase = ''
Expand Down

0 comments on commit 7dacaa0

Please sign in to comment.