forked from mirrors/nixpkgs
* Added obexd.
svn path=/nixpkgs/trunk/; revision=17497
This commit is contained in:
parent
8177f0f042
commit
fc95cc78f8
16
pkgs/tools/bluetooth/obexd/default.nix
Normal file
16
pkgs/tools/bluetooth/obexd/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, dbus, openobex, bluez }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "obexd-0.18";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
|
||||
sha256 = "0a3jpkgg8skiqmy2ksfffmwysji4dnd4h9fc46nj0wcn8n9vvfkd";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib dbus.libs openobex bluez ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.bluez.org/;
|
||||
};
|
||||
}
|
|
@ -1162,6 +1162,11 @@ let
|
|||
inherit fetchurl stdenv libevent;
|
||||
};
|
||||
|
||||
obexd = import ../tools/bluetooth/obexd {
|
||||
inherit fetchurl stdenv pkgconfig dbus openobex bluez;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
obexfs = import ../tools/bluetooth/obexfs {
|
||||
inherit fetchurl stdenv pkgconfig fuse obexftp;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue