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

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, gmp, isl }:
{ fetchurl, lib, stdenv, gmp, isl }:
stdenv.mkDerivation rec {
name = "cloog-0.18.0";
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
homepage = "http://www.cloog.org/";
license = stdenv.lib.licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
/* Leads to an ICE on Cygwin:
@@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
make[3]: *** [Box.lo] Error 1
*/
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
platforms = lib.platforms.unix; # Once had cygwin problems
};
}
+3 -3
View File
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, gmp, isl }:
{ fetchurl, lib, stdenv, gmp, isl }:
stdenv.mkDerivation rec {
name = "cloog-0.18.4";
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
homepage = "http://www.cloog.org/";
license = stdenv.lib.licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
/* Leads to an ICE on Cygwin:
@@ -59,6 +59,6 @@ stdenv.mkDerivation rec {
make[3]: *** [Box.lo] Error 1
*/
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
platforms = lib.platforms.unix; # Once had cygwin problems
};
}