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:
Thomas Gerbet 2024-03-17 12:19:44 +01:00 committed by GitHub
commit b095d8c210
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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