pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "boost-build";
@@ -27,9 +27,9 @@ stdenv.mkDerivation rec {
./b2 install --prefix=$out
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = "http://www.boost.org/boost-build2/";
license = stdenv.lib.licenses.boost;
license = lib.licenses.boost;
platforms = platforms.unix;
maintainers = with maintainers; [ ivan-tkatchev ];
};