biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / gnu-pw-mgr / default.nix
blob0e1c8c0f589ebd1bfaaf143dfca1c3914fe410ff
1 { stdenv, lib, fetchurl, gnulib }:
3 stdenv.mkDerivation rec {
4   pname = "gnu-pw-mgr";
5   version = "2.7.4";
6   src = fetchurl {
7     url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
8     sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8";
9   };
11   buildInputs = [ gnulib ];
13   meta = with lib; {
14     homepage = "https://www.gnu.org/software/gnu-pw-mgr/";
15     description = "Password manager designed to make it easy to reconstruct difficult passwords";
16     license = with licenses; [ gpl3Plus lgpl3Plus ];
17     platforms = lib.platforms.linux;
18     maintainers = with maintainers; [ qoelet ];
19   };