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

@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [
texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
] ++ stdenv.lib.optional doCheck guile-lib;
] ++ lib.optional doCheck guile-lib;
# The test suite tries to open an X display, which fails.
doCheck = false;

View File

@@ -1,7 +1,6 @@
{ lib, stdenv, fetchurl, fetchpatch, pkgconfig
, gperf, guile, guile-lib, libffi }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "guile-reader";