Merge pull request #54034 from r-ryantm/auto-update/xdg-dbus-proxy
xdg-dbus-proxy: 0.1.0 -> 0.1.1
This commit is contained in:
commit
15ccbad71b
@ -1,18 +1,24 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib }:
|
{ stdenv, fetchurl, pkgconfig, libxslt, docbook_xsl, docbook_xml_dtd_43, dbus, glib }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "0.1.0";
|
pname = "xdg-dbus-proxy";
|
||||||
in stdenv.mkDerivation rec {
|
version = "0.1.1";
|
||||||
name = "xdg-dbus-proxy-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/flatpak/xdg-dbus-proxy/releases/download/${version}/${name}.tar.xz";
|
url = "https://github.com/flatpak/xdg-dbus-proxy/releases/download/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "055wli36lvdannp6qqwbvd78353n61wn9kp8y3dchh39wq7x7vwy";
|
sha256 = "1w8yg5j51zsr9d97d4jjp9dvd7iq893p2xk54i6lf3lx01ribdqh";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig libxslt docbook_xsl docbook_xml_dtd_43 ];
|
||||||
|
|
||||||
buildInputs = [ glib ];
|
buildInputs = [ glib ];
|
||||||
|
checkInputs = [ dbus ];
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "DBus proxy for Flatpak and others";
|
description = "DBus proxy for Flatpak and others";
|
||||||
|
Loading…
Reference in New Issue
Block a user