older nixpkgs fix; this is annoying, because isDarwin is not really correct

This commit is contained in:
Moritz Angermann 2018-10-08 13:15:56 +08:00
parent 10e676a80b
commit 3b2cff3356
No known key found for this signature in database
GPG Key ID: A98C646D142C675F

View File

@ -1,7 +1,7 @@
stdenv: with stdenv.hostPlatform; {
os = if isLinux then "Linux" else
if isWindows then "Windows" else
if isMacOS then "Osx" else
if isDarwin then "Osx" else
if isFreeBSD then "Freebsd" else
if isOpenBSD then "Openbsd" else
if isNetBSD then "Netbsd" else