Files
nixpkgs/pkgs/by-name/kx/kx-aspe-cli/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

37 lines
926 B
Nix

{
lib,
rustPlatform,
fetchFromGitea,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "kx-aspe-cli";
version = "0-unstable-2024-04-06";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "keyoxide";
repo = "kx-aspe-cli";
rev = "492df7edae95a8636bb59c4e5c1607053dab2c78";
hash = "sha256-xSJTwyHNqDHyH6dgwlWnvqNCzTvmFntk+XgAaxODWAY=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoHash = "sha256-wOg81NvChOLPiCyhJ5dGn5sRskevpf0QdKwmgZa2/1s=";
meta = {
homepage = "https://codeberg.org/keyoxide/kx-aspe-cli";
changelog = "https://codeberg.org/keyoxide/kx-aspe-cli/src/commit/${src.rev}/CHANGELOG.md";
description = "Keyoxide profile generator CLI using ASPE";
mainProgram = "kx-aspe";
platforms = lib.platforms.linux;
license = [ lib.licenses.asl20 ];
maintainers = [ lib.maintainers.nobbz ];
};
}