summary refs log tree commit diff
path: root/pkgs/test/ld-library-path
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-01-24 01:40:18 +0100
committerPavol Rusnak <pavol@rusnak.io>2021-01-24 01:49:49 +0100
commit90f73381120f7ae9e0d5f0f6dc16cb141c658494 (patch)
tree5683ff0c39f9ac901e181fc0591cf03c2b95b07a /pkgs/test/ld-library-path
parent2f34b4b883932f0ee2c1787e704f3915786e8cca (diff)
downloadnixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.gz
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.bz2
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.lz
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.xz
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.zst
nixpkgs-90f73381120f7ae9e0d5f0f6dc16cb141c658494.zip
treewide: stdenv.lib -> lib
Diffstat (limited to 'pkgs/test/ld-library-path')
-rw-r--r--pkgs/test/ld-library-path/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/test/ld-library-path/default.nix b/pkgs/test/ld-library-path/default.nix
index bda3f0be84a..74c52cef253 100644
--- a/pkgs/test/ld-library-path/default.nix
+++ b/pkgs/test/ld-library-path/default.nix
@@ -1,4 +1,4 @@
-{ stdenv }:
+{ lib, stdenv }:
 
 # This tests that libraries listed in LD_LIBRARY_PATH take precedence over those listed in RPATH.
 
@@ -84,5 +84,5 @@ in stdenv.mkDerivation {
     touch $out
   '';
 
-  meta.platforms = stdenv.lib.platforms.linux;
+  meta.platforms = lib.platforms.linux;
 }