xdg-dbus-proxy: init at 0.1.0

This commit is contained in:
Jan Tojnar 2018-09-14 02:50:38 +02:00
parent 87d11ae99c
commit 2d19ee6247
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, glib }:
let
version = "0.1.0";
in stdenv.mkDerivation rec {
name = "xdg-dbus-proxy-${version}";
src = fetchurl {
url = "https://github.com/flatpak/xdg-dbus-proxy/releases/download/${version}/${name}.tar.xz";
sha256 = "055wli36lvdannp6qqwbvd78353n61wn9kp8y3dchh39wq7x7vwy";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib ];
meta = with stdenv.lib; {
description = "DBus proxy for Flatpak and others";
homepage = https://flatpak.org/;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}

View file

@ -19437,6 +19437,8 @@ with pkgs;
xdaliclock = callPackage ../tools/misc/xdaliclock {};
xdg-dbus-proxy = callPackage ../development/libraries/xdg-dbus-proxy { };
xdg-desktop-portal = callPackage ../development/libraries/xdg-desktop-portal { };
xdg-desktop-portal-gtk = callPackage ../development/libraries/xdg-desktop-portal-gtk { };