pkgs/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 17:12:36 +07:00
parent 94f3683935
commit 8c5d37129f
916 changed files with 2510 additions and 2510 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, rofi, systemd, coreutils, util-linux, gawk, makeWrapper, jq
{ lib, stdenv, fetchFromGitHub, rofi, systemd, coreutils, util-linux, gawk, makeWrapper, jq
}:
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
cp -a rofi-systemd $out/bin/rofi-systemd
'';
wrapperPath = with stdenv.lib; makeBinPath [
wrapperPath = with lib; makeBinPath [
coreutils
gawk
jq
@@ -39,8 +39,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Control your systemd units using rofi";
homepage = "https://github.com/IvanMalison/rofi-systemd";
maintainers = with stdenv.lib.maintainers; [ imalison ];
license = stdenv.lib.licenses.gpl3;
platforms = with stdenv.lib.platforms; linux;
maintainers = with lib.maintainers; [ imalison ];
license = lib.licenses.gpl3;
platforms = with lib.platforms; linux;
};
}