rocksdb: use stdenv.lib instead of lib
This commit is contained in:
parent
415093d4c0
commit
f2e16a647a
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, fixDarwinDylibNames
|
||||
, which, perl
|
||||
|
@ -72,7 +72,7 @@ stdenv.mkDerivation rec {
|
|||
mv -vi $out/lib/${LIBNAME}.a $static/lib/
|
||||
|
||||
install -d ''${!outputBin}/bin
|
||||
install -D ${lib.concatStringsSep " " tools} ''${!outputBin}/bin
|
||||
install -D ${stdenv.lib.concatStringsSep " " tools} ''${!outputBin}/bin
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue