Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
977 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
rustPlatform,
fetchFromGitHub,
installShellFiles,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "pizauth";
version = "1.0.7";
src = fetchFromGitHub {
owner = "ltratt";
repo = "pizauth";
tag = "pizauth-${version}";
hash = "sha256-lvG50Ej0ius4gHEsyMKOXLD20700mc4iWJxHK5DvYJc=";
};
cargoHash = "sha256-WyQIk74AKfsv0noafCGMRS6o+Lq6CeP99AFSdYq+QHg=";
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd pizauth \
--bash share/bash/completion.bash
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Command-line OAuth2 authentication daemon";
homepage = "https://github.com/ltratt/pizauth";
changelog = "https://github.com/ltratt/pizauth/blob/${src.rev}/CHANGES.md";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ moraxyc ];
mainProgram = "pizauth";
};
}