summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/obexd/default.nix
blob: 1cf3918c21fcb66d9b783ce888b8424ba9be5d75 (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 ];

  buildNativeInputs = [ pkgconfig ];

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