nixpkgs/pkgs/development/libraries/xdg-dbus-proxy/default.nix

50 lines
984 B
Nix
Raw Normal View History

2020-02-07 23:04:43 +01:00
{ stdenv
, fetchurl
, pkgconfig
, libxslt
, docbook_xsl
, docbook_xml_dtd_43
, dbus
, glib
}:
2018-09-14 02:50:38 +02:00
2019-01-16 08:35:28 +01:00
stdenv.mkDerivation rec {
pname = "xdg-dbus-proxy";
version = "0.1.2";
2018-09-14 02:50:38 +02:00
src = fetchurl {
2019-01-16 08:35:28 +01:00
url = "https://github.com/flatpak/xdg-dbus-proxy/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "03sj1h0c2l08xa8phw013fnxr4fgav7l2mkjhzf9xk3dykwxcj8p";
2018-09-14 02:50:38 +02:00
};
2020-02-07 23:04:43 +01:00
nativeBuildInputs = [
pkgconfig
libxslt
docbook_xsl
docbook_xml_dtd_43
];
buildInputs = [
glib
];
checkInputs = [
dbus
];
2019-01-16 08:35:28 +01:00
configureFlags = [
"--enable-man"
];
# dbus[2345]: Failed to start message bus: Failed to open "/etc/dbus-1/session.conf": No such file or directory
doCheck = false;
2018-09-14 02:50:38 +02:00
meta = with stdenv.lib; {
description = "DBus proxy for Flatpak and others";
2020-02-07 23:04:43 +01:00
homepage = "https://github.com/flatpak/xdg-dbus-proxy";
2018-09-14 02:50:38 +02:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}