pkgs/development/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, binutils , fetchurl, ncurses5 }:
|
||||
{ lib, stdenv, binutils , fetchurl, ncurses5 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.0.30";
|
||||
@@ -23,14 +23,14 @@ stdenv.mkDerivation rec {
|
||||
write_entries write_tables entrystream; do
|
||||
echo "Patching:" $exe
|
||||
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $exe
|
||||
patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ncurses5 ]}" $exe
|
||||
patchelf --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc ncurses5 ]}" $exe
|
||||
done
|
||||
cd ../
|
||||
cp -R ./ $out
|
||||
ln -s $out/tools $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A pluggable, (mostly) language-agnostic ecosystem for building tools that work with code";
|
||||
longDescription = ''
|
||||
The Kythe project was founded to provide and support tools and standards
|
||||
|
||||
Reference in New Issue
Block a user