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
{ lib, stdenv
, fetchFromGitHub
, makeWrapper
, coreutils
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
postInstall =
let
path = stdenv.lib.makeBinPath [
path = lib.makeBinPath [
coreutils
gawk
git
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/git-quick-stats --suffix PATH : ${path}
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://github.com/arzzen/git-quick-stats";
description = "A simple and efficient way to access various statistics in git repository";
platforms = platforms.all;