kx-aspe-cli: init at 0-unstable-2024-04-06

This commit is contained in:
Norbert Melzer 2024-05-13 22:30:04 +02:00
parent 9d62e426c8
commit 889dcf436c

@ -0,0 +1,36 @@
{
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-ZZwb5WHKFMAP5yPT1DDi+nWy7rjM/UI6ahagNqTDDMM=";
meta = {
homepage = "https://github.com/rustic-rs/rustic";
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 ];
};
}