uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/applications/science/medicine/dcmtk/default.nix
Normal file
31
pkgs/applications/science/medicine/dcmtk/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchFromGitHub, zlib, libtiff, libxml2, openssl, libiconv, libpng, cmake }:
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dcmtk";
|
||||
version = "3.6.7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "DCMTK";
|
||||
repo = pname;
|
||||
rev = "DCMTK-${version}";
|
||||
sha256 = "sha256-Pw99R6oGcLX6Z7s8ZnpbBBqcIvY9Rl/nw2PVGjpD3gY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ libpng zlib libtiff libxml2 openssl libiconv ];
|
||||
|
||||
meta = {
|
||||
description = "Collection of libraries and applications implementing large parts of the DICOM standard";
|
||||
longDescription = ''
|
||||
DCMTK is a collection of libraries and applications implementing large parts of the DICOM standard.
|
||||
It includes software for examining, constructing and converting DICOM image files, handling offline media,
|
||||
sending and receiving images over a network connection, as well as demonstrative image storage and worklist servers.
|
||||
DCMTK is is written in a mixture of ANSI C and C++.
|
||||
It comes in complete source code and is made available as "open source" software.
|
||||
'';
|
||||
homepage = "https://dicom.offis.de/dcmtk";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ iimog ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue