summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-01-15 17:46:46 +0100
committerJan Tojnar <jtojnar@gmail.com>2021-01-15 17:46:46 +0100
commitc0d2951fa6f27449373765e6e6eb3e5200b45301 (patch)
tree9fe735a2418a531cac733d9bb1e95d072466c5dd /pkgs/tools/system
parent83c50873f5810152bf1aad2b9a97a225926d04cf (diff)
parentbb9601719890dc04241304bb1a5cf224683d5740 (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/amtterm/default.nix4
-rw-r--r--pkgs/tools/system/at/default.nix6
-rw-r--r--pkgs/tools/system/bar/default.nix8
-rw-r--r--pkgs/tools/system/bfs/default.nix4
-rw-r--r--pkgs/tools/system/bottom/default.nix2
-rw-r--r--pkgs/tools/system/chase/default.nix4
-rw-r--r--pkgs/tools/system/collectd/default.nix2
-rw-r--r--pkgs/tools/system/collectd/plugins.nix30
-rw-r--r--pkgs/tools/system/dfc/default.nix8
-rw-r--r--pkgs/tools/system/facter/default.nix4
-rw-r--r--pkgs/tools/system/fakeroot/default.nix14
-rw-r--r--pkgs/tools/system/fcron/default.nix2
-rw-r--r--pkgs/tools/system/fdisk/default.nix6
-rw-r--r--pkgs/tools/system/fio/default.nix6
-rw-r--r--pkgs/tools/system/freeipmi/default.nix8
-rw-r--r--pkgs/tools/system/gptfdisk/default.nix4
-rw-r--r--pkgs/tools/system/gt5/default.nix10
-rw-r--r--pkgs/tools/system/idle3tools/default.nix8
-rw-r--r--pkgs/tools/system/illum/default.nix8
-rw-r--r--pkgs/tools/system/inxi/default.nix2
-rw-r--r--pkgs/tools/system/ipmitool/default.nix6
-rw-r--r--pkgs/tools/system/ledmon/default.nix2
-rw-r--r--pkgs/tools/system/logrotate/default.nix10
-rw-r--r--pkgs/tools/system/mcron/default.nix6
-rw-r--r--pkgs/tools/system/monit/default.nix16
-rw-r--r--pkgs/tools/system/netdata/default.nix4
-rw-r--r--pkgs/tools/system/pciutils/default.nix2
-rw-r--r--pkgs/tools/system/plan9port/default.nix6
-rw-r--r--pkgs/tools/system/proot/default.nix4
-rw-r--r--pkgs/tools/system/rofi-systemd/default.nix10
-rw-r--r--pkgs/tools/system/rowhammer-test/default.nix2
-rw-r--r--pkgs/tools/system/rsyslog/default.nix8
-rw-r--r--pkgs/tools/system/runit/default.nix8
-rw-r--r--pkgs/tools/system/s6-rc/default.nix4
-rw-r--r--pkgs/tools/system/safecopy/default.nix8
-rw-r--r--pkgs/tools/system/setserial/default.nix6
-rw-r--r--pkgs/tools/system/sleuthkit/default.nix8
-rw-r--r--pkgs/tools/system/smartmontools/default.nix4
-rw-r--r--pkgs/tools/system/socklog/default.nix4
-rw-r--r--pkgs/tools/system/stress-ng/default.nix4
-rw-r--r--pkgs/tools/system/supervise/default.nix2
-rw-r--r--pkgs/tools/system/testdisk/default.nix10
-rw-r--r--pkgs/tools/system/thinkfan/default.nix4
-rw-r--r--pkgs/tools/system/tree/default.nix8
-rw-r--r--pkgs/tools/system/tuptime/default.nix2
-rw-r--r--pkgs/tools/system/undaemonize/default.nix8
-rw-r--r--pkgs/tools/system/zenith/default.nix2
47 files changed, 149 insertions, 149 deletions
diff --git a/pkgs/tools/system/amtterm/default.nix b/pkgs/tools/system/amtterm/default.nix
index 9050111fc17b..4ceb1aea72b3 100644
--- a/pkgs/tools/system/amtterm/default.nix
+++ b/pkgs/tools/system/amtterm/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, makeWrapper, perl, perlPackages }:
+{ fetchurl, lib, stdenv, makeWrapper, perl, perlPackages }:
stdenv.mkDerivation rec {
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
postInstall =
"wrapProgram $out/bin/amttool --prefix PERL5LIB : $PERL5LIB";
- meta = with stdenv.lib;
+ meta = with lib;
{ description = "Intel AMTĀ® SoL client + tools";
homepage = "https://www.kraxel.org/cgit/amtterm/";
license = licenses.gpl2;
diff --git a/pkgs/tools/system/at/default.nix b/pkgs/tools/system/at/default.nix
index 278b14cd1999..db3c066c0ba4 100644
--- a/pkgs/tools/system/at/default.nix
+++ b/pkgs/tools/system/at/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, bison, flex, pam, perl
+{ lib, stdenv, fetchurl, fetchpatch, bison, flex, pam, perl
, sendmailPath ? "/run/wrappers/bin/sendmail"
, atWrapperPath ? "/run/wrappers/bin/at"
}:
@@ -52,8 +52,8 @@ stdenv.mkDerivation rec {
meta = {
description = ''The classical Unix `at' job scheduling command'';
- license = stdenv.lib.licenses.gpl2Plus;
+ license = lib.licenses.gpl2Plus;
homepage = "https://packages.qa.debian.org/at";
- platforms = stdenv.lib.platforms.linux;
+ platforms = lib.platforms.linux;
};
}
diff --git a/pkgs/tools/system/bar/default.nix b/pkgs/tools/system/bar/default.nix
index 32945a24bb16..79bb3f79a998 100644
--- a/pkgs/tools/system/bar/default.nix
+++ b/pkgs/tools/system/bar/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
name = "bar-1.11.1";
@@ -11,8 +11,8 @@ stdenv.mkDerivation {
meta = {
description = "Console progress bar";
homepage = "http://clpbar.sourceforge.net/";
- license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.rdnetto ];
- platforms = stdenv.lib.platforms.all;
+ license = lib.licenses.gpl2;
+ maintainers = [ lib.maintainers.rdnetto ];
+ platforms = lib.platforms.all;
};
}
diff --git a/pkgs/tools/system/bfs/default.nix b/pkgs/tools/system/bfs/default.nix
index c49f033c42ad..7ea7430e95d7 100644
--- a/pkgs/tools/system/bfs/default.nix
+++ b/pkgs/tools/system/bfs/default.nix
@@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "1iricyigm0rsc8fr91vk3krvyafbnp0y3ww1rjv94l6jbdl7rrlb";
};
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ libcap acl ];
+ buildInputs = lib.optionals stdenv.isLinux [ libcap acl ];
# Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
- preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ preConfigure = lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile --replace "-flto -DNDEBUG" "-DNDEBUG"
'';
diff --git a/pkgs/tools/system/bottom/default.nix b/pkgs/tools/system/bottom/default.nix
index a79e8bdcebf2..d138ed4d8c1d 100644
--- a/pkgs/tools/system/bottom/default.nix
+++ b/pkgs/tools/system/bottom/default.nix
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ installShellFiles ];
- buildInputs = stdenv.lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.IOKit;
+ buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.IOKit;
cargoSha256 = "sha256-qnh4Tl6JRgxBJbu+t9IJX/XChIR15rTRLvsl+/ZvPxY=";
diff --git a/pkgs/tools/system/chase/default.nix b/pkgs/tools/system/chase/default.nix
index c4396aad9ca6..a37d9bbf47ad 100644
--- a/pkgs/tools/system/chase/default.nix
+++ b/pkgs/tools/system/chase/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }:
+{ lib, stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }:
stdenv.mkDerivation rec {
pname = "chase";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "-e" ];
makeFlagsArray="LIBS=-lgc";
- meta = with stdenv.lib ; {
+ meta = with lib ; {
description = "Follow a symlink and print out its target file";
longDescription = ''
A commandline program that chases symbolic filesystems links to the original file
diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix
index eb64a09a22bd..8add2b3ad628 100644
--- a/pkgs/tools/system/collectd/default.nix
+++ b/pkgs/tools/system/collectd/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [
libtool
- ] ++ stdenv.lib.optionals stdenv.isDarwin [
+ ] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.ApplicationServices
] ++ plugins.buildInputs;
diff --git a/pkgs/tools/system/collectd/plugins.nix b/pkgs/tools/system/collectd/plugins.nix
index defeed4c8928..dd578cd6393b 100644
--- a/pkgs/tools/system/collectd/plugins.nix
+++ b/pkgs/tools/system/collectd/plugins.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
, curl
, darwin
, hiredis
@@ -49,7 +49,7 @@ let
aggregation = {};
amqp = {
buildInputs = [ yajl ] ++
- stdenv.lib.optionals stdenv.isLinux [ rabbitmq-c ];
+ lib.optionals stdenv.isLinux [ rabbitmq-c ];
};
apache = {
buildInputs = [ curl ];
@@ -62,7 +62,7 @@ let
};
barometer = {};
battery = {
- buildInputs = stdenv.lib.optionals stdenv.isDarwin [
+ buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.IOKit
];
};
@@ -94,9 +94,9 @@ let
};
df = {};
disk = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [
+ buildInputs = lib.optionals stdenv.isLinux [
udev
- ] ++ stdenv.lib.optionals stdenv.isDarwin [
+ ] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.IOKit
];
};
@@ -126,7 +126,7 @@ let
iptables = {
buildInputs = [
libpcap
- ] ++ stdenv.lib.optionals stdenv.isLinux [
+ ] ++ lib.optionals stdenv.isLinux [
iptables libmnl
];
};
@@ -161,14 +161,14 @@ let
memory = {};
mic = {};
modbus = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ libmodbus ];
+ buildInputs = lib.optionals stdenv.isLinux [ libmodbus ];
};
mqtt = {
buildInputs = [ mosquitto ];
};
multimeter = {};
mysql = {
- buildInputs = stdenv.lib.optionals (libmysqlclient != null) [
+ buildInputs = lib.optionals (libmysqlclient != null) [
libmysqlclient
];
};
@@ -176,7 +176,7 @@ let
netlink = {
buildInputs = [
libpcap
- ] ++ stdenv.lib.optionals stdenv.isLinux [
+ ] ++ lib.optionals stdenv.isLinux [
libmnl
];
};
@@ -236,20 +236,20 @@ let
buildInputs = [ rrdtool libxml2 ];
};
sensors = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ lm_sensors ];
+ buildInputs = lib.optionals stdenv.isLinux [ lm_sensors ];
};
serial = {};
sigrok = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ libsigrok udev ];
+ buildInputs = lib.optionals stdenv.isLinux [ libsigrok udev ];
};
smart = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ libatasmart udev ];
+ buildInputs = lib.optionals stdenv.isLinux [ libatasmart udev ];
};
snmp = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ net-snmp ];
+ buildInputs = lib.optionals stdenv.isLinux [ net-snmp ];
};
snmp_agent = {
- buildInputs = stdenv.lib.optionals stdenv.isLinux [ net-snmp ];
+ buildInputs = lib.optionals stdenv.isLinux [ net-snmp ];
};
statsd = {};
swap = {};
@@ -280,7 +280,7 @@ let
};
virt = {
buildInputs = [ libvirt libxml2 yajl ] ++
- stdenv.lib.optionals stdenv.isLinux [ lvm2 udev
+ lib.optionals stdenv.isLinux [ lvm2 udev
# those might be no longer required when https://github.com/NixOS/nixpkgs/pull/51767
# is merged
libapparmor numactl libcap_ng
diff --git a/pkgs/tools/system/dfc/default.nix b/pkgs/tools/system/dfc/default.nix
index 415b647befa0..6478e699539f 100644
--- a/pkgs/tools/system/dfc/default.nix
+++ b/pkgs/tools/system/dfc/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, cmake, gettext}:
+{lib, stdenv, fetchurl, cmake, gettext}:
stdenv.mkDerivation rec {
pname = "dfc";
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://projects.gw-computing.net/projects/dfc";
description = "Displays file system space usage using graphs and colors";
- license = stdenv.lib.licenses.bsd3;
- maintainers = with stdenv.lib.maintainers; [qknight];
- platforms = stdenv.lib.platforms.all;
+ license = lib.licenses.bsd3;
+ maintainers = with lib.maintainers; [qknight];
+ platforms = lib.platforms.all;
};
}
diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix
index a67b975ec92c..2f2d35ef1e7a 100644
--- a/pkgs/tools/system/facter/default.nix
+++ b/pkgs/tools/system/facter/default.nix
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
owner = "puppetlabs";
};
- CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isGNU "-fpermissive -Wno-error=catch-value";
- NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lblkid";
+ CXXFLAGS = lib.optionalString stdenv.cc.isGNU "-fpermissive -Wno-error=catch-value";
+ NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lblkid";
cmakeFlags = [
"-DFACTER_RUBY=${ruby}/lib/libruby${stdenv.hostPlatform.extensions.sharedLibrary}"
diff --git a/pkgs/tools/system/fakeroot/default.nix b/pkgs/tools/system/fakeroot/default.nix
index c5765609a278..57a986e3da99 100644
--- a/pkgs/tools/system/fakeroot/default.nix
+++ b/pkgs/tools/system/fakeroot/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, getopt, libcap, gnused }:
+{ lib, stdenv, fetchurl, fetchpatch, getopt, libcap, gnused }:
stdenv.mkDerivation rec {
version = "1.23";
@@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "1xpl0s2yjyjwlf832b6kbkaa5921liybaar13k7n45ckd9lxd700";
};
- patches = stdenv.lib.optional stdenv.isLinux ./einval.patch
+ patches = lib.optional stdenv.isLinux ./einval.patch
# patchset from brew
- ++ stdenv.lib.optionals stdenv.isDarwin [
+ ++ lib.optionals stdenv.isDarwin [
(fetchpatch {
name = "0001-Implement-openat-2-wrapper-which-handles-optional-ar.patch";
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=0001-Implement-openat-2-wrapper-which-handles-optional-ar.patch;att=1;bug=766649";
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
];
buildInputs = [ getopt gnused ]
- ++ stdenv.lib.optional (!stdenv.isDarwin) libcap
+ ++ lib.optional (!stdenv.isDarwin) libcap
;
postUnpack = ''
@@ -40,9 +40,9 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://salsa.debian.org/clint/fakeroot";
description = "Give a fake root environment through LD_PRELOAD";
- license = stdenv.lib.licenses.gpl2Plus;
- maintainers = with stdenv.lib.maintainers; [viric];
- platforms = stdenv.lib.platforms.unix;
+ license = lib.licenses.gpl2Plus;
+ maintainers = with lib.maintainers; [viric];
+ platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/tools/system/fcron/default.nix b/pkgs/tools/system/fcron/default.nix
index d6f764b9ea6a..9e3b3c2c16d3 100644
--- a/pkgs/tools/system/fcron/default.nix
+++ b/pkgs/tools/system/fcron/default.nix
@@ -56,6 +56,6 @@ stdenv.mkDerivation rec {
description="A command scheduler with extended capabilities over cron and anacron";
homepage = "http://fcron.free.fr";
license = licenses.gpl2;
- platforms = stdenv.lib.platforms.all;
+ platforms = lib.platforms.all;
};
}
diff --git a/pkgs/tools/system/fdisk/default.nix b/pkgs/tools/system/fdisk/default.nix
index 423b00bd5439..4ad654783dfc 100644
--- a/pkgs/tools/system/fdisk/default.nix
+++ b/pkgs/tools/system/fdisk/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, parted, libuuid, gettext, guile }:
+{ fetchurl, lib, stdenv, parted, libuuid, gettext, guile }:
stdenv.mkDerivation rec {
name = "gnufdisk-2.0.0a"; # .0a1 seems broken, see https://lists.gnu.org/archive/html/bug-fdisk/2012-09/msg00000.html
@@ -20,10 +20,10 @@ stdenv.mkDerivation rec {
cfdisk. It uses GNU Parted.
'';
- license = stdenv.lib.licenses.gpl3Plus;
+ license = lib.licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/fdisk/";
- platforms = stdenv.lib.platforms.linux;
+ platforms = lib.platforms.linux;
};
}
diff --git a/pkgs/tools/system/fio/default.nix b/pkgs/tools/system/fio/default.nix
index 6efa107ef321..a71bef4809c0 100644
--- a/pkgs/tools/system/fio/default.nix
+++ b/pkgs/tools/system/fio/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ python zlib ]
- ++ stdenv.lib.optional (!stdenv.isDarwin) libaio;
+ ++ lib.optional (!stdenv.isDarwin) libaio;
nativeBuildInputs = [ makeWrapper ];
@@ -27,9 +27,9 @@ stdenv.mkDerivation rec {
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
'';
- postInstall = stdenv.lib.optionalString withGnuplot ''
+ postInstall = lib.optionalString withGnuplot ''
wrapProgram $out/bin/fio2gnuplot \
- --prefix PATH : ${stdenv.lib.makeBinPath [ gnuplot ]}
+ --prefix PATH : ${lib.makeBinPath [ gnuplot ]}
'';
meta = with lib; {
diff --git a/pkgs/tools/system/freeipmi/default.nix b/pkgs/tools/system/freeipmi/default.nix
index 76654d145399..610dfe0a6460 100644
--- a/pkgs/tools/system/freeipmi/default.nix
+++ b/pkgs/tools/system/freeipmi/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, libgcrypt, readline, libgpgerror }:
+{ fetchurl, lib, stdenv, libgcrypt, readline, libgpgerror }:
stdenv.mkDerivation rec {
version = "1.6.6";
@@ -33,10 +33,10 @@ stdenv.mkDerivation rec {
homepage = "https://www.gnu.org/software/freeipmi/";
downloadPage = "https://www.gnu.org/software/freeipmi/download.html";
- license = stdenv.lib.licenses.gpl3Plus;
+ license = lib.licenses.gpl3Plus;
- maintainers = with stdenv.lib.maintainers; [ raskin ];
- platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
+ maintainers = with lib.maintainers; [ raskin ];
+ platforms = lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
updateWalker = true;
inherit version;
diff --git a/pkgs/tools/system/gptfdisk/default.nix b/pkgs/tools/system/gptfdisk/default.nix
index 5e2f047674e9..b5f7c369dfdb 100644
--- a/pkgs/tools/system/gptfdisk/default.nix
+++ b/pkgs/tools/system/gptfdisk/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
postPatch = ''
patchShebangs gdisk_test.sh
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ '' + lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile.mac --replace \
"-mmacosx-version-min=10.4" "-mmacosx-version-min=10.6"
substituteInPlace Makefile.mac --replace \
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
"/opt/local/lib/libncurses.a" "${ncurses.out}/lib/libncurses.dylib"
'';
- buildPhase = stdenv.lib.optionalString stdenv.isDarwin "make -f Makefile.mac";
+ buildPhase = lib.optionalString stdenv.isDarwin "make -f Makefile.mac";
buildInputs = [ libuuid popt icu ncurses ];
installPhase = ''
diff --git a/pkgs/tools/system/gt5/default.nix b/pkgs/tools/system/gt5/default.nix
index 61d25f414bbd..3e904e6c0ada 100644
--- a/pkgs/tools/system/gt5/default.nix
+++ b/pkgs/tools/system/gt5/default.nix
@@ -1,8 +1,8 @@
-{stdenv, fetchurl}:
+{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "gt5-1.4.0";
-
+
src = fetchurl {
url = "mirror://sourceforge/gt5/${name}.tar.gz";
sha256 = "0gm0gzyp4d9rxqddbaskbz5zvmlhyr4nyb5x9g7x4abyyxqjlnkq";
@@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
meta = {
description = "A diff-capable 'du' browser";
homepage = "http://gt5.sourceforge.net/";
- license = stdenv.lib.licenses.gpl2Plus;
- maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; linux;
+ license = lib.licenses.gpl2Plus;
+ maintainers = with lib.maintainers; [viric];
+ platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/system/idle3tools/default.nix b/pkgs/tools/system/idle3tools/default.nix
index fa5234d8cbc3..5e9796396a9c 100644
--- a/pkgs/tools/system/idle3tools/default.nix
+++ b/pkgs/tools/system/idle3tools/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl}:
+{lib, stdenv, fetchurl}:
stdenv.mkDerivation {
name = "idle3-tools-0.9.1";
@@ -15,8 +15,8 @@ stdenv.mkDerivation {
meta = {
homepage = "http://idle3-tools.sourceforge.net/";
description = "Tool to get/set the infamous idle3 timer in WD HDDs";
- license = stdenv.lib.licenses.gpl3;
- maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; linux;
+ license = lib.licenses.gpl3;
+ maintainers = with lib.maintainers; [viric];
+ platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/system/illum/default.nix b/pkgs/tools/system/illum/default.nix
index 41fce9b9b912..1f35c0766d90 100644
--- a/pkgs/tools/system/illum/default.nix
+++ b/pkgs/tools/system/illum/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, pkgconfig, ninja, libevdev, libev }:
+{ lib, stdenv, fetchgit, pkgconfig, ninja, libevdev, libev }:
stdenv.mkDerivation {
version = "0.4";
@@ -26,8 +26,8 @@ stdenv.mkDerivation {
meta = {
homepage = "https://github.com/jmesmon/illum";
description = "Daemon that wires button presses to screen backlight level";
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.dancek ];
- license = stdenv.lib.licenses.agpl3;
+ platforms = lib.platforms.linux;
+ maintainers = [ lib.maintainers.dancek ];
+ license = lib.licenses.agpl3;
};
}
diff --git a/pkgs/tools/system/inxi/default.nix b/pkgs/tools/system/inxi/default.nix
index 6b732a92ebb9..1ef871c9d30f 100644
--- a/pkgs/tools/system/inxi/default.nix
+++ b/pkgs/tools/system/inxi/default.nix
@@ -9,7 +9,7 @@
let
prefixPath = programs:
- "--prefix PATH ':' '${stdenv.lib.makeBinPath programs}'";
+ "--prefix PATH ':' '${lib.makeBinPath programs}'";
recommendedSystemPrograms = lib.optionals withRecommendedSystemPrograms [
util-linuxMinimal dmidecode file hddtemp iproute ipmitool usbutils kmod
lm_sensors smartmontools binutils tree upower pciutils
diff --git a/pkgs/tools/system/ipmitool/default.nix b/pkgs/tools/system/ipmitool/default.nix
index 196e59953fe7..1d3150040180 100644
--- a/pkgs/tools/system/ipmitool/default.nix
+++ b/pkgs/tools/system/ipmitool/default.nix