Merge pull request #39666 from dtzWill/fix/stdenv-system-nix
nix: fix stdenv.system check -- should be hostPlatform
This commit is contained in:
commit
47b25136b1
@ -41,7 +41,7 @@ let
|
||||
propagatedBuildInputs = [ boehmgc ];
|
||||
|
||||
# Seems to be required when using std::atomic with 64-bit types
|
||||
NIX_LDFLAGS = lib.optionalString (stdenv.system == "armv6l-linux") "-latomic";
|
||||
NIX_LDFLAGS = lib.optionalString (stdenv.hostPlatform.system == "armv6l-linux") "-latomic";
|
||||
|
||||
configureFlags =
|
||||
[ "--with-store-dir=${storeDir}"
|
||||
|
Loading…
Reference in New Issue
Block a user