4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, docutils, meson, ninja, pkgconfig
|
|
, dbus, linuxHeaders, systemd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dbus-broker";
|
|
version = "22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bus1";
|
|
repo = "dbus-broker";
|
|
rev = "v${version}";
|
|
sha256 = "0vxr73afix5wjxy8g4cckwhl242rrlazm52673iwmdyfz5nskj2x";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ docutils meson ninja pkgconfig ];
|
|
|
|
buildInputs = [ dbus linuxHeaders systemd ];
|
|
|
|
PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
|
|
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
|
|
PKG_CONFIG_SYSTEMD_CATALOGDIR = "${placeholder "out"}/lib/systemd/catalog";
|
|
|
|
postInstall = ''
|
|
install -Dm644 $src/README.md $out/share/doc/dbus-broker/README
|
|
|
|
sed -i $out/lib/systemd/{system,user}/dbus-broker.service \
|
|
-e 's,^ExecReload.*busctl,ExecReload=${systemd}/bin/busctl,'
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Linux D-Bus Message Broker";
|
|
homepage = "https://github.com/bus1/dbus-broker/wiki";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|