libdicom: init at 1.0.5

This commit is contained in:
Leonardo Romor 2023-10-24 21:21:29 +02:00
parent c721fa27b7
commit dd3f20b67e
No known key found for this signature in database
GPG Key ID: C5AA5C8BBD49A6AA
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, 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=";
};
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;
};
})

View File

@ -22668,6 +22668,8 @@ with pkgs;
libdex = callPackage ../development/libraries/libdex { };
libdicom = callPackage ../development/libraries/libdicom { };
libdigidocpp = callPackage ../development/libraries/libdigidocpp { };
libdiscid = callPackage ../development/libraries/libdiscid { };