Skip to content

Commit

Permalink
dbus-broker: 3 -> 8
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Nov 29, 2017
1 parent d202a0c commit 226c569
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/os-specific/linux/dbus-broker/default.nix
@@ -1,21 +1,24 @@
{ stdenv, fetchgit, fetchFromGitHub, meson, ninja, pkgconfig
{ stdenv, fetchgit, fetchFromGitHub, docutils, meson, ninja, pkgconfig
, dbus, glib, systemd }:

stdenv.mkDerivation rec {
name = "dbus-broker-${version}";
version = "3";
version = "8";

src = fetchFromGitHub {
owner = "bus1";
repo = "dbus-broker";
rev = "v${version}";
sha256 = "1f2vw5b2cbdgd3g7vnzwr9lsw9v4xc5nc0nf9xc3qb5xqzsq7v7i";
sha256 = "07k8y6pcx58dfd0vvxcbz352v4apajs5lf0chv6fdp7xf7wbbcwb";
fetchSubmodules = true;
};

nativeBuildInputs = [ meson ninja pkgconfig ];
nativeBuildInputs = [ docutils meson ninja pkgconfig ];

buildInputs = [ dbus glib systemd ];

enableParallelBuilding = true;

prePatch = ''
substituteInPlace meson.build \
--replace "dep_systemd.get_pkgconfig_variable('systemdsystemunitdir')" "'$out/lib/systemd/system'" \
Expand Down

0 comments on commit 226c569

Please sign in to comment.