mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, docutils, meson, ninja, pkgconfig
|
|
, dbus, linuxHeaders, systemd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dbus-broker";
|
|
version = "21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bus1";
|
|
repo = "dbus-broker";
|
|
rev = "v${version}";
|
|
sha256 = "14lgjv0gxvfa1h5hsarh9nwpxns6jb2861nd7mcanpkm2jlxh5vm";
|
|
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 stdenv.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 ];
|
|
};
|
|
}
|