pkgs/development/interpreters: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, automake
|
||||
, autoconf
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# The provided makefile leaves a wrong reference to /build/ in RPATH,
|
||||
# so we fix it after checking that everything is also present in $out
|
||||
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
||||
preFixup = lib.optionalString stdenv.isLinux ''
|
||||
needed_libraries=$(ls .libs | grep '\.\(so\|la\)$')
|
||||
for lib in $needed_libraries; do
|
||||
if ! ls $out/lib | grep "$lib"; then
|
||||
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "GNU readline for interactive tcl shells";
|
||||
homepage = "https://github.com/flightaware/tclreadline";
|
||||
license = licenses.bsd3;
|
||||
|
||||
Reference in New Issue
Block a user