Merge pull request #296270 from risicle/ris-libdicom-CVE-2024-24793-CVE-2024-24794
libdicom: add patch for CVE-2024-24793 & CVE-2024-24794
This commit is contained in:
commit
b095d8c210
1 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, uthash
|
||||
, meson
|
||||
, ninja
|
||||
|
@ -19,6 +20,15 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
sha256 = "sha256-9n0Gp9+fmTM/shgWC8zpwt1pic9BrvDubOt7f+ZDMeE=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "CVE-2024-24793.CVE-2024-24794.patch";
|
||||
url = "https://github.com/ImagingDataCommons/libdicom/commit/3661aa4cdbe9c39f67d38ae87520f9e3ed50ab16.patch";
|
||||
excludes = [ "CHANGELOG.md" ];
|
||||
hash = "sha256-/KTp0nKYk6jX4phNHY+nzjEptUBHKM2JkOftS5vHsEw=";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ uthash ];
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ]
|
||||
|
|
Loading…
Reference in a new issue