From 20b1291f06d5867e75fa3ad59fbca7149255798f Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 30 Jul 2024 18:06:56 +0300 Subject: [PATCH] sequoia-sqop: small 'with lib;' removal --- pkgs/tools/security/sequoia-sqop/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/sequoia-sqop/default.nix b/pkgs/tools/security/sequoia-sqop/default.nix index 2354a63d9737..ff62b5793f0e 100644 --- a/pkgs/tools/security/sequoia-sqop/default.nix +++ b/pkgs/tools/security/sequoia-sqop/default.nix @@ -48,11 +48,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Implementation of the Stateless OpenPGP Command Line Interface using Sequoia"; homepage = "https://docs.sequoia-pgp.org/sqop/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "sqop"; }; }