about summary refs log tree commit diff
path: root/pkgs/tools/misc/nbench
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-05-11 00:52:26 +0300
committerArtturin <Artturin@artturin.com>2022-05-27 05:57:43 +0300
commitc1fffdfffb43b07ce09b14da0af9a856e1e8566e (patch)
tree1ecb988330d7abff572631331234e1f6115f5514 /pkgs/tools/misc/nbench
parent0c4d65b21efd3ae2fcdec54492cbaa6542352eb9 (diff)
treewide: change some glibc to stdenv.cc.libc
Diffstat (limited to 'pkgs/tools/misc/nbench')
-rw-r--r--pkgs/tools/misc/nbench/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/nbench/default.nix b/pkgs/tools/misc/nbench/default.nix
index 34ffcfe2d8a7a..0ce1d66cf2142 100644
--- a/pkgs/tools/misc/nbench/default.nix
+++ b/pkgs/tools/misc/nbench/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, glibc }:
+{ lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
   pname = "nbench-byte";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
   '';
 
   buildInputs = lib.optionals stdenv.hostPlatform.isGnu [
-    glibc.static
+    stdenv.cc.libc.static
   ];
 
   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];