Commit 20b1291f authored by Doron Behar's avatar Doron Behar
Browse files

sequoia-sqop: small 'with lib;' removal

parent 5ef5b3e8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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";
  };
}