nixpkgs/pkgs/tools/security/gnu-pw-mgr/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

20 lines
628 B
Nix

{ stdenv, lib, fetchurl, gnulib }:
stdenv.mkDerivation rec {
pname = "gnu-pw-mgr";
version = "2.7.4";
src = fetchurl {
url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8";
};
buildInputs = [ gnulib ];
meta = with lib; {
homepage = "https://www.gnu.org/software/gnu-pw-mgr/";
description = "Password manager designed to make it easy to reconstruct difficult passwords";
license = with licenses; [ gpl3Plus lgpl3Plus ];
platforms = lib.platforms.linux;
maintainers = with maintainers; [ qoelet ];
};
}