about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-04 17:05:09 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-07 22:28:19 -0300
commit48b72555c113173385c7356d9d473cde5706890d (patch)
tree740504c79b332eafe890e7c15a11d7bdaae6123a /pkgs/applications/graphics
parentc9ba5272c52c65e4484c797e03b3bf2eb4c54024 (diff)
downloadnixlib-48b72555c113173385c7356d9d473cde5706890d.tar
nixlib-48b72555c113173385c7356d9d473cde5706890d.tar.gz
nixlib-48b72555c113173385c7356d9d473cde5706890d.tar.bz2
nixlib-48b72555c113173385c7356d9d473cde5706890d.tar.lz
nixlib-48b72555c113173385c7356d9d473cde5706890d.tar.xz
nixlib-48b72555c113173385c7356d9d473cde5706890d.tar.zst
nixlib-48b72555c113173385c7356d9d473cde5706890d.zip
nomacs: quick&dirty fix for Darwin
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/nomacs/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/nomacs/default.nix b/pkgs/applications/graphics/nomacs/default.nix
index b39b2b2de9f2..e0e03eb0dadf 100644
--- a/pkgs/applications/graphics/nomacs/default.nix
+++ b/pkgs/applications/graphics/nomacs/default.nix
@@ -22,7 +22,10 @@ stdenv.mkDerivation (finalAttrs: {
     hash = "sha256-OwiMB6O4+WuAt87sRbD1Qby3U7igqgCgddiWs3a4j3k=";
   };
 
-  outputs = [ "out" "man" ];
+  # Because some unknown reason split outputs is breaking on Darwin
+  outputs = if stdenv.isDarwin
+            then [ "out" ]
+            else [ "out" "man" ];
 
   sourceRoot = "${finalAttrs.src.name}/ImageLounge";