nixpkgs/pkgs/by-name/pi/pizauth/package.nix

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

45 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-03 15:09:32 +00:00
{
lib,
rustPlatform,
fetchFromGitHub,
installShellFiles,
2024-11-03 14:57:39 +00:00
apple-sdk_11,
2024-06-03 15:09:32 +00:00
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "pizauth";
2024-07-29 12:41:19 +00:00
version = "1.0.5";
2024-06-03 15:09:32 +00:00
src = fetchFromGitHub {
owner = "ltratt";
repo = "pizauth";
2024-11-03 14:57:39 +00:00
rev = "refs/tags/pizauth-${version}";
2024-07-29 12:41:19 +00:00
hash = "sha256-9NezG644oCLTWHTdUaUpJbuwkJu3at/IGNH3FSxl/DI=";
2024-06-03 15:09:32 +00:00
};
2024-07-29 12:41:19 +00:00
cargoHash = "sha256-Lp5ovkQKShgT7EFvQ+5KE3eQWJEQAL68Bk1d+wUo+bc=";
2024-06-03 15:09:32 +00:00
2024-11-03 14:57:39 +00:00
# pizauth cannot be built with default apple-sdk_10 on x86_64-darwin, pin to 11
buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11;
2024-06-03 15:09:32 +00:00
2024-11-03 14:57:39 +00:00
nativeBuildInputs = [ installShellFiles ];
2024-06-03 15:09:32 +00:00
postInstall = ''
installShellCompletion --cmd pizauth \
--bash share/bash/completion.bash
'';
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";
};
}