xmedcon: init at 0.21.0
This allows reading DICOM images, including 3d stacks.
This commit is contained in:
parent
804f493483
commit
275cc4e9c7
36
pkgs/applications/science/medicine/xmedcon/default.nix
Normal file
36
pkgs/applications/science/medicine/xmedcon/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, gtk3
|
||||||
|
, glib
|
||||||
|
, pkg-config
|
||||||
|
, libpng
|
||||||
|
, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "xmedcon";
|
||||||
|
version = "0.21.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://prdownloads.sourceforge.net/${pname}/${pname}-${version}.tar.bz2";
|
||||||
|
sha256 = "0yfnbrcil5i76z1wbg308pb1mnjbcxy6nih46qpqs038v1lhh4q8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
glib
|
||||||
|
libpng
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An open source toolkit for medical image conversion ";
|
||||||
|
homepage = "https://xmedcon.sourceforge.io/Main/HomePage";
|
||||||
|
license = licenses.lgpl2Plus;
|
||||||
|
maintainers = with maintainers; [ arianvp flokli ];
|
||||||
|
platforms = with platforms; [ darwin linux ];
|
||||||
|
};
|
||||||
|
}
|
@ -28278,6 +28278,8 @@ in
|
|||||||
|
|
||||||
dcmtk = callPackage ../applications/science/medicine/dcmtk { };
|
dcmtk = callPackage ../applications/science/medicine/dcmtk { };
|
||||||
|
|
||||||
|
xmedcon = callPackage ../applications/science/medicine/xmedcon { };
|
||||||
|
|
||||||
### SCIENCE/PHYSICS
|
### SCIENCE/PHYSICS
|
||||||
|
|
||||||
elmerfem = callPackage ../applications/science/physics/elmerfem {};
|
elmerfem = callPackage ../applications/science/physics/elmerfem {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user