61 lines
1,011 B
Nix
61 lines
1,011 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromSourcehut,
|
|
audit,
|
|
pkg-config,
|
|
libcap,
|
|
gperf,
|
|
meson,
|
|
ninja,
|
|
python3,
|
|
getent,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "basu";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~emersion";
|
|
repo = "basu";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-zIaEIIo8lJeas2gVjMezO2hr8RnMIT7iiCBilZx5lRQ=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"lib"
|
|
];
|
|
|
|
buildInputs = [
|
|
audit
|
|
gperf
|
|
libcap
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
python3
|
|
getent
|
|
];
|
|
|
|
preConfigure = ''
|
|
pushd src/basic
|
|
patchShebangs \
|
|
generate-cap-list.sh generate-errno-list.sh generate-gperfs.py
|
|
popd
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://sr.ht/~emersion/basu";
|
|
description = "Sd-bus library, extracted from systemd";
|
|
mainProgram = "basuctl";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|