summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/obexd/default.nix
blob: 0771505b7269c27268dc681b5ed3a6949694b5b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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 = with stdenv.lib; {
    homepage = http://www.bluez.org/;
    platforms = platforms.linux;
    license = licenses.gpl3;
  };
}