mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4e2597d1b8
Since D-Bus 1.9.18 configuration files installed by third-party should go in share/dbus-1/system.d. The old location is for sysadmin overrides.
25 lines
791 B
Nix
25 lines
791 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintl, libiconv }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "disnix-0.9";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/svanderburg/disnix/releases/download/disnix-0.9/disnix-0.9.tar.gz;
|
|
sha256 = "1kc4520zjc1z72mknylfvrsyda9rbmm5c9mw8w13zhdwg3zbna06";
|
|
};
|
|
|
|
configureFlags = [
|
|
" --with-dbus-sys=${placeholder "out"}/share/dbus-1/system.d"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib libxml2 libxslt getopt nixUnstable libintl libiconv dysnomia ];
|
|
|
|
meta = {
|
|
description = "A Nix-based distributed service deployment tool";
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|