summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/obexd/default.nix
blob: a3486569b518079aa62ce5c4e9aa47c52778f688 (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.48";
   
  src = fetchurl {
    url = "mirror://kernel/linux/bluetooth/${name}.tar.bz2";
    sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8";
  };

  buildInputs = [ glib dbus openobex bluez libical ];

  nativeBuildInputs = [ pkgconfig ];

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