summary refs log tree commit diff
path: root/pkgs/applications/science/medicine
diff options
context:
space:
mode:
authorDiep Pham <mrfavadi@gmail.com>2021-08-28 13:00:18 +0700
committerGitHub <noreply@github.com>2021-08-28 02:00:18 -0400
commitac0b44b1eea909a45e332aa3ed266dea0bd0a125 (patch)
treedd9ad022ad9722fbece242dd62859e5f787e66c9 /pkgs/applications/science/medicine
parent45131df1671d5886821908b5294f5fba5fb23fc7 (diff)
downloadnixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar.gz
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar.bz2
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar.lz
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar.xz
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.tar.zst
nixpkgs-ac0b44b1eea909a45e332aa3ed266dea0bd0a125.zip
dcmtk: support darwin platform (#136005)
Diffstat (limited to 'pkgs/applications/science/medicine')
-rw-r--r--pkgs/applications/science/medicine/dcmtk/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/medicine/dcmtk/default.nix b/pkgs/applications/science/medicine/dcmtk/default.nix
index 8a06260ebc7..b6a9c161638 100644
--- a/pkgs/applications/science/medicine/dcmtk/default.nix
+++ b/pkgs/applications/science/medicine/dcmtk/default.nix
@@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
     homepage = "https://dicom.offis.de/dcmtk";
     license = licenses.bsd3;
     maintainers = with maintainers; [ iimog ];
-    platforms = platforms.linux;
+    platforms = with platforms; linux ++ darwin;
   };
 }