mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
stdenv: Add `isGlibc' function.
This commit is contained in:
parent
606e6acd6f
commit
6adc5cedae
@ -30,7 +30,7 @@ let
|
||||
lib.filter lib.isDerivation initialPath;
|
||||
}
|
||||
|
||||
// {
|
||||
// rec {
|
||||
|
||||
meta = {
|
||||
description = "The default build environment for Unix packages in Nixpkgs";
|
||||
@ -96,6 +96,9 @@ let
|
||||
|| result.system == "armv7l-linux"
|
||||
|| result.system == "mips64el-linux";
|
||||
isGNU = result.system == "i686-gnu"; # GNU/Hurd
|
||||
isGlibc = isGNU # useful for `stdenvNative'
|
||||
|| isLinux
|
||||
|| result.system = "x86_64-kfreebsd-gnu";
|
||||
isSunOS = result.system == "i686-solaris"
|
||||
|| result.system == "x86_64-solaris";
|
||||
isCygwin = result.system == "i686-cygwin";
|
||||
|
Loading…
Reference in New Issue
Block a user