about summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-27 12:50:30 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-27 13:01:51 +0700
commit02ee14b9d54d31351689084c47f9a048a41f27b4 (patch)
tree33f6edfc8e580f670b3fa08eeab1092f9b1d99d6 /pkgs/development/misc
parentdb4cede4160f25143fd882ba92e3cc2cd5f93ae0 (diff)
treewide: stdenvNoCC.lib -> lib
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/msp430/gcc-support.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/misc/msp430/gcc-support.nix b/pkgs/development/misc/msp430/gcc-support.nix
index e9ed959c2fd0d..fa143173c70c0 100644
--- a/pkgs/development/misc/msp430/gcc-support.nix
+++ b/pkgs/development/misc/msp430/gcc-support.nix
@@ -1,4 +1,4 @@
-{ stdenvNoCC, fetchzip }:
+{ lib, stdenvNoCC, fetchzip }:
 
 let
   mspgccVersion = "6_1_1_0";
@@ -19,7 +19,7 @@ in stdenvNoCC.mkDerivation rec {
     touch $out/lib/lib
   '';
 
-  meta = with stdenvNoCC.lib; {
+  meta = with lib; {
     description = ''
       Development headers and linker scripts for TI MSP430 microcontrollers
     '';