Files
nixpkgs/pkgs/by-name/ci/ciel/package.nix
2026-05-09 00:46:33 +00:00

73 lines
1.4 KiB
Nix

{
lib,
bash,
dbus,
fetchFromGitHub,
installShellFiles,
libgit2,
libssh2,
openssl,
pkg-config,
rustPlatform,
systemd,
xz,
zlib,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "ciel";
version = "3.10.4";
src = fetchFromGitHub {
owner = "AOSC-Dev";
repo = "ciel-rs";
tag = "v${finalAttrs.version}";
hash = "sha256-oKYPhevy0o5IxxqMneWAamRyZr7yForbsuhszWDUaQk=";
};
cargoHash = "sha256-hrjZKowkTQaNDrwOYM6pvUomcBrMrvlgvLl0UreeW8U=";
nativeBuildInputs = [
pkg-config
installShellFiles
];
# ciel has plugins which is actually bash scripts.
# Therefore, bash is required for plugins to work.
buildInputs = [
bash
systemd
dbus
openssl
libssh2
libgit2
xz
zlib
];
postInstall = ''
mv -v "$out/bin/ciel-rs" "$out/bin/ciel"
# From install-assets.sh
install -Dm555 -t "$out/libexec/ciel-plugin" plugins/*
# Install completions
installShellCompletion --cmd ciel \
--bash completions/ciel.bash \
--fish completions/ciel.fish \
--zsh completions/_ciel
'';
meta = {
description = "Tool for controlling AOSC OS packaging environments using multi-layer filesystems and containers";
homepage = "https://github.com/AOSC-Dev/ciel-rs";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
A1ca7raz
yisuidenghua
];
mainProgram = "ciel";
};
})