Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
testers,
|
|
nix-update-script,
|
|
phraze,
|
|
rustPlatform,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "phraze";
|
|
version = "0.3.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sts10";
|
|
repo = "phraze";
|
|
rev = "v${version}";
|
|
hash = "sha256-UURzpG5YZ7R/6vVOB/gtbFNNsVnOAsRwioKRLFxOH4c=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
cargoHash = "sha256-Uxbi/spmsPmxUNuLvEAWD1QLLBc/3zU/JoNyB7Dvlac=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests = {
|
|
version = testers.testVersion { package = phraze; };
|
|
};
|
|
};
|
|
|
|
postInstall = ''
|
|
installManPage target/man/phraze.1
|
|
|
|
installShellCompletion --cmd phraze \
|
|
--bash target/completions/phraze.bash \
|
|
--fish target/completions/phraze.fish \
|
|
--zsh target/completions/_phraze
|
|
'';
|
|
|
|
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
|
|
donovanglover
|
|
];
|
|
mainProgram = "phraze";
|
|
};
|
|
}
|