pkgs/development: stdenv.lib -> lib

this takes care of the following folders in pkgs/development:
* arduino
* chez-modules
* go-packages
* guile-modules
* idris-modules
* perl-modules
* r-modules
* ruby-modules
This commit is contained in:
Pavol Rusnak
2021-01-17 19:11:59 +01:00
parent 979e6e67d3
commit cf2a67fef3
18 changed files with 57 additions and 59 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, chez }:
{ stdenv, lib, fetchFromGitHub, chez }:
stdenv.mkDerivation rec {
pname = "chez-matchable";
@@ -23,11 +23,11 @@ stdenv.mkDerivation rec {
doCheck = false;
meta = {
meta = with lib; {
description = "This is a Library for ChezScheme providing the protable hygenic pattern matcher by Alex Shinn";
homepage = "https://github.com/fedeinthemix/chez-matchable/";
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.publicDomain;
maintainers = [ maintainers.jitwit ];
license = licenses.publicDomain;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchgit, chez, chez-srfi }:
{ stdenv, lib, fetchgit, chez, chez-srfi }:
stdenv.mkDerivation {
pname = "chez-mit";
@@ -22,11 +22,11 @@ stdenv.mkDerivation {
doCheck = false;
meta = {
meta = with lib; {
description = "This is a MIT/GNU Scheme compatibility library for Chez Scheme";
homepage = "https://github.com/fedeinthemix/chez-mit/";
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.free;
maintainers = [ maintainers.jitwit ];
license = licenses.free;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchgit, chez, chez-srfi, chez-mit }:
{ stdenv, lib, fetchgit, chez, chez-srfi, chez-mit }:
stdenv.mkDerivation {
pname = "chez-scmutils";
@@ -22,11 +22,11 @@ stdenv.mkDerivation {
doCheck = false;
meta = {
meta = with lib; {
description = "This is a port of the MIT Scmutils library to Chez Scheme";
homepage = "https://github.com/fedeinthemix/chez-scmutils/";
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.gpl3;
maintainers = [ maintainers.jitwit ];
license = licenses.gpl3;
};
}

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchgit, chez }:
{ stdenv, lib, fetchgit, chez }:
stdenv.mkDerivation {
pname = "chez-srfi";
@@ -22,11 +22,11 @@ stdenv.mkDerivation {
doCheck = false;
meta = {
meta = with lib; {
description = "This package provides a collection of SRFI libraries for Chez Scheme";
homepage = "https://github.com/fedeinthemix/chez-srfi/";
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.free;
maintainers = [ maintainers.jitwit ];
license = licenses.free;
};
}