diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ff34460d6e30..b9fe6d429ba9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -21724,6 +21724,12 @@ github = "x0ba"; githubId = 64868985; }; + x123 = { + name = "x123"; + email = "nix@boxchop.city"; + github = "x123"; + githubId = 5481629; + }; x3ro = { name = "^x3ro"; email = "nix@x3ro.dev"; diff --git a/pkgs/by-name/ph/phraze/package.nix b/pkgs/by-name/ph/phraze/package.nix new file mode 100644 index 000000000000..fe9376e9d632 --- /dev/null +++ b/pkgs/by-name/ph/phraze/package.nix @@ -0,0 +1,30 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, +}: + +rustPlatform.buildRustPackage rec { + pname = "phraze"; + version = "0.3.11"; + + src = fetchFromGitHub { + owner = "sts10"; + repo = "phraze"; + rev = "v${version}"; + hash = "sha256-1tvFVwTvtjAXVfCObdL3tGq50q4zouchNAuMo7euZ3g="; + }; + + doCheck = true; + + cargoHash = "sha256-q3nkNBEiisGp+ElSXZnT4x6P0Sm5sM2R9cpzpaJ/UU4="; + + meta = { + description = "Generate random passphrases"; + homepage = "https://github.com/sts10/phraze"; + changelog = "https://github.com/sts10/phraze/releases/tag/v${version}"; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ x123 ]; + mainProgram = "phraze"; + }; +}