68 lines
1.5 KiB
Nix
68 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitea,
|
|
pkg-config,
|
|
installShellFiles,
|
|
writableTmpDirAsHomeHook,
|
|
libgit2,
|
|
oniguruma,
|
|
openssl,
|
|
zlib,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "forgejo-cli";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "Cyborus";
|
|
repo = "forgejo-cli";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-8KPR7Fx26hj5glKDjczCLP6GgQBUsA5TpjhO5UZOpik=";
|
|
};
|
|
|
|
cargoHash = "sha256-kW7Pexydkosaufk1e8P5FaY+dgkeeTG5qgJxestWkVs=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
writableTmpDirAsHomeHook # Needed for shell completions
|
|
];
|
|
|
|
buildInputs = [
|
|
libgit2
|
|
oniguruma
|
|
openssl
|
|
zlib
|
|
];
|
|
|
|
env = {
|
|
RUSTONIG_SYSTEM_LIBONIG = true;
|
|
BUILD_TYPE = "nixpkgs";
|
|
};
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd fj \
|
|
--bash <($out/bin/fj completion bash) \
|
|
--fish <($out/bin/fj completion fish) \
|
|
--zsh <($out/bin/fj completion zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "CLI application for interacting with Forgejo";
|
|
homepage = "https://codeberg.org/Cyborus/forgejo-cli";
|
|
changelog = "https://codeberg.org/Cyborus/forgejo-cli/releases/tag/v${finalAttrs.version}";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
awwpotato
|
|
isabelroses
|
|
];
|
|
mainProgram = "fj";
|
|
};
|
|
})
|