summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-09-18 15:35:11 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-09-18 16:25:19 -0400
commit2111e7b742aa0121a7b3b14738811ad030a6c321 (patch)
tree337b9cc0d58f8b3d8f8d0255d888396d466be3bc /pkgs/development/libraries/glibc
parent67694371869eaa43933f47f5cbcb87024945a72d (diff)
downloadnixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar.gz
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar.bz2
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar.lz
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar.xz
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.tar.zst
nixpkgs-2111e7b742aa0121a7b3b14738811ad030a6c321.zip
mkDerivation: Make `separateDebugInfo` assertion lazier to match other assertions
This is needed to access attributes of derivations on platforms where
they cannot be built.
Diffstat (limited to 'pkgs/development/libraries/glibc')
-rw-r--r--pkgs/development/libraries/glibc/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix
index c74c27598ee..8b17ff9e558 100644
--- a/pkgs/development/libraries/glibc/default.nix
+++ b/pkgs/development/libraries/glibc/default.nix
@@ -94,8 +94,7 @@ callPackage ./common.nix { inherit stdenv; } {
       mv $bin/bin/getconf_ $bin/bin/getconf
     '';
 
-    # Hack to get around eval issue.
-    separateDebugInfo = !stdenv.isDarwin;
+    separateDebugInfo = true;
 
     meta.description = "The GNU C Library";
   }