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
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitea,
|
|
installShellFiles,
|
|
pkg-config,
|
|
pcsclite,
|
|
dbus,
|
|
testers,
|
|
openpgp-card-tools,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "openpgp-card-tools";
|
|
version = "0.11.10";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "openpgp-card";
|
|
repo = "openpgp-card-tools";
|
|
rev = "v${version}";
|
|
hash = "sha256-1sm/zaKhUPMGdYg8sX/IXAI4vIRRZezSD89rljG4S/Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-S+TOSUh/sr647aUBjo+aaZgVrrOubwa+XVFcwNBOxmI=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [
|
|
pcsclite
|
|
dbus
|
|
];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = openpgp-card-tools;
|
|
};
|
|
};
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
OCT_COMPLETION_OUTPUT_DIR=$PWD/shell $out/bin/oct
|
|
installShellCompletion ./shell/oct.{bash,fish} ./shell/_oct
|
|
OCT_MANPAGE_OUTPUT_DIR=$PWD/man $out/bin/oct
|
|
installManPage ./man/*.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for inspecting and configuring OpenPGP cards";
|
|
homepage = "https://codeberg.org/openpgp-card/openpgp-card-tools";
|
|
license = with licenses; [
|
|
asl20 # OR
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ nickcao ];
|
|
mainProgram = "oct";
|
|
};
|
|
}
|