summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2017-07-03 09:31:25 -0300
committerDavid McFarland <corngood@gmail.com>2017-07-03 09:31:25 -0300
commitbb3c8a164c037a5c5697bb411c5b965c7e01d1a7 (patch)
tree77c222c0fe4ac7b9a4c9214008c6c29ff08e6dfa
parentd1a89ae9d702a4b91b6d661af256552e330bb995 (diff)
downloadnixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar.gz
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar.bz2
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar.lz
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar.xz
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.tar.zst
nixpkgs-bb3c8a164c037a5c5697bb411c5b965c7e01d1a7.zip
lib: Include darwin in isUnix
-rw-r--r--lib/systems/inspect.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/inspect.nix b/lib/systems/inspect.nix
index ec71592d119..8228705272e 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -15,7 +15,7 @@ rec {
     LittleEndian = { cpu = { significantByte = significantBytes.littleEndian; }; };
 
     BSD          = { kernel = { families = { inherit (kernelFamilies) bsd; }; }; };
-    Unix         = [ BSD Linux SunOS Hurd Cygwin ];
+    Unix         = [ BSD Darwin Linux SunOS Hurd Cygwin ];
 
     Darwin       = { kernel = kernels.darwin; };
     Linux        = { kernel = kernels.linux; };