summaryrefslogtreecommitdiffstats
path: root/pkgs/development/misc/msp430/gcc-support.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-27 10:13:05 +0100
committerGitHub <noreply@github.com>2021-01-27 10:13:05 +0100
commit2ee93d61ad2220199e8116526d485a8e23e9aee5 (patch)
tree9bf733fe5fd9491f568709bb6511e9536a0b05f2 /pkgs/development/misc/msp430/gcc-support.nix
parentb58f10c3ba10d20f246b668a49a99fb2cfd11b7f (diff)
parent36c91cea1dbe396b92b20bdab3d0d7ad2f294eeb (diff)
Merge pull request #110913 from siraben/other-stdenv-lib
Diffstat (limited to 'pkgs/development/misc/msp430/gcc-support.nix')
-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 e9ed959c2fd0..fa143173c70c 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
'';