From d93057e49f2b7fcb65681edf90b851ba87d3423a Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Sat, 15 Feb 2025 17:27:05 -0300 Subject: [PATCH] stress: remove `with lib` from meta --- pkgs/by-name/st/stress/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/st/stress/package.nix b/pkgs/by-name/st/stress/package.nix index 0c89c2522720..ff4f75e071fe 100644 --- a/pkgs/by-name/st/stress/package.nix +++ b/pkgs/by-name/st/stress/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "stress"; }; })