summary refs log tree commit diff
path: root/pkgs/development/libraries/xdg-dbus-proxy/default.nix
blob: 247b8ee45d0b2ee3bc00a423cad2a4d73916d1f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
  };
}