xdg-dbus-proxy: clean up

wip/yesman
Jan Tojnar 4 years ago committed by worldofpeace
parent a10d38d901
commit 0f76b3c61d
  1. 29
      pkgs/development/libraries/xdg-dbus-proxy/default.nix

@ -1,4 +1,12 @@
{ stdenv, fetchurl, pkgconfig, libxslt, docbook_xsl, docbook_xml_dtd_43, dbus, glib }:
{ stdenv
, fetchurl
, pkgconfig
, libxslt
, docbook_xsl
, docbook_xml_dtd_43
, dbus
, glib
}:
stdenv.mkDerivation rec {
pname = "xdg-dbus-proxy";
@ -9,9 +17,20 @@ stdenv.mkDerivation rec {
sha256 = "03sj1h0c2l08xa8phw013fnxr4fgav7l2mkjhzf9xk3dykwxcj8p";
};
nativeBuildInputs = [ pkgconfig libxslt docbook_xsl docbook_xml_dtd_43 ];
buildInputs = [ glib ];
checkInputs = [ dbus ];
nativeBuildInputs = [
pkgconfig
libxslt
docbook_xsl
docbook_xml_dtd_43
];
buildInputs = [
glib
];
checkInputs = [
dbus
];
configureFlags = [
"--enable-man"
@ -22,7 +41,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "DBus proxy for Flatpak and others";
homepage = https://flatpak.org/;
homepage = "https://github.com/flatpak/xdg-dbus-proxy";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;

Loading…
Cancel
Save