From bb3c8a164c037a5c5697bb411c5b965c7e01d1a7 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Mon, 3 Jul 2017 09:31:25 -0300 Subject: [PATCH] lib: Include darwin in isUnix --- lib/systems/inspect.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systems/inspect.nix b/lib/systems/inspect.nix index ec71592d1190..8228705272e7 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; };