pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, autoreconfHook }:
{lib, stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
name = "gperf-3.0.4";
@@ -27,9 +27,9 @@ stdenv.mkDerivation rec {
employed by gperf.
'';
license = stdenv.lib.licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/gperf/";
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "gperf-3.1";
@@ -25,9 +25,9 @@ stdenv.mkDerivation rec {
employed by gperf.
'';
license = stdenv.lib.licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/gperf/";
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}