remove stdenv.isBSD

This commit is contained in:
codyopel
2015-02-24 22:15:51 -05:00
parent 6a6cc70978
commit e29b0da9c7
7 changed files with 18 additions and 31 deletions

View File

@@ -5,9 +5,9 @@ let
platform = with stdenv;
if isDarwin then "macosx"
else if isCygwin then "cygwin"
else if isBSD then "bsd"
else if (isFreeBSD || isOpenBSD) then "bsd"
else if isSunOS then "solaris"
else "linux"; # Should be a sane default
else "linux"; # Should be a sane default
lib = stdenv.lib;
in
stdenv.mkDerivation {