From 1040a6d1090a296e4562a9c1757701681bae2eea Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 16 Sep 2025 11:52:43 +0200 Subject: [PATCH] gopass: remove `with lib;` from `meta` --- pkgs/tools/security/gopass/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix index 5c99f84eb0c9..3feb953133e1 100644 --- a/pkgs/tools/security/gopass/default.nix +++ b/pkgs/tools/security/gopass/default.nix @@ -86,11 +86,11 @@ buildGoModule (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Slightly more awesome Standard Unix Password Manager for Teams. Written in Go"; homepage = "https://www.gopass.pw/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs sikmir ];