summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper/multilib.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/cc-wrapper/multilib.nix')
-rw-r--r--pkgs/test/cc-wrapper/multilib.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/test/cc-wrapper/multilib.nix b/pkgs/test/cc-wrapper/multilib.nix
index 5ea50b5eb26..828ad67f6c8 100644
--- a/pkgs/test/cc-wrapper/multilib.nix
+++ b/pkgs/test/cc-wrapper/multilib.nix
@@ -1,4 +1,4 @@
-{ stdenv }:
+{ lib, stdenv }:
 
 stdenv.mkDerivation {
   name = "cc-multilib-test";
@@ -33,5 +33,5 @@ stdenv.mkDerivation {
     touch $out
   '';
 
-  meta.platforms = stdenv.lib.platforms.x86_64;
+  meta.platforms = lib.platforms.x86_64;
 }