From fed528af315000ebffd23b067bd3a408501302fc Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 9 Nov 2024 00:50:55 +0100 Subject: [PATCH] wipeout-rewrite: Drop meta-wide "with lib" --- pkgs/games/wipeout-rewrite/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/wipeout-rewrite/default.nix b/pkgs/games/wipeout-rewrite/default.nix index d42b942cc051..e0ea54b3a6d0 100644 --- a/pkgs/games/wipeout-rewrite/default.nix +++ b/pkgs/games/wipeout-rewrite/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { mainProgram = "wipegame"; description = "Re-implementation of the 1995 PSX game wipEout"; homepage = "https://github.com/phoboslab/wipeout-rewrite"; - license = licenses.unfree; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; })