depot/pkgs/by-name/ba/basu/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

56 lines
984 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;
};
})