mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f0e64ce16f
Manual migration for the sake of by-name migration is no longer discouraged since #340235.
56 lines
984 B
Nix
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;
|
|
};
|
|
})
|