mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, uthash
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, check
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libdicom";
|
|
version = "1.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ImagingDataCommons";
|
|
repo = "libdicom";
|
|
rev = "v${finalAttrs.version}";
|
|
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 ]
|
|
++ lib.optionals (finalAttrs.finalPackage.doCheck) [ check ];
|
|
|
|
mesonBuildType = "release";
|
|
|
|
mesonFlags = lib.optionals (!finalAttrs.finalPackage.doCheck) [ "-Dtests=false" ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "C library for reading DICOM files";
|
|
homepage = "https://github.com/ImagingDataCommons/libdicom";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lromor ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|