summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/obexd/default.nix
blob: 47db0877dd20cc6039755e730f7a29c2f5fdeb2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pkgconfig, glib, dbus, openobex, bluez, libical }:
   
stdenv.mkDerivation rec {
  name = "obexd-0.47";
   
  src = fetchurl {
    url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
    sha256 = "15zw008098qr5az9y1c010yv8gkw1f6hi3mnfcvpmwxwh23kfh4i";
  };

  buildInputs = [ glib dbus.libs openobex bluez libical ];

  nativeBuildInputs = [ pkgconfig ];

  meta = {
    homepage = http://www.bluez.org/;
  };
}