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

This commit is contained in:
Ben Siraphob
2021-01-22 00:00:13 +07:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp }:
{ lib, stdenv, fetchurl, gmp }:
stdenv.mkDerivation {
name = "isl-0.11.1"; # CLooG 0.16.3 fails to build with ISL 0.08.
@@ -15,8 +15,8 @@ stdenv.mkDerivation {
meta = {
homepage = "https://www.kotnet.org/~skimo/isl/";
license = stdenv.lib.licenses.lgpl21;
license = lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp }:
{ lib, stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "isl-0.14.1";
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://www.kotnet.org/~skimo/isl/";
license = stdenv.lib.licenses.lgpl21;
license = lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp }:
{ lib, stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "isl-0.17.1";
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://www.kotnet.org/~skimo/isl/";
license = stdenv.lib.licenses.lgpl21;
license = lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp }:
{ lib, stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "isl-0.20";
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://isl.gforge.inria.fr/";
license = stdenv.lib.licenses.lgpl21;
license = lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}