43 lines
977 B
Nix
43 lines
977 B
Nix
|
|
{
|
||
|
|
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";
|
||
|
|
};
|
||
|
|
}
|