mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21 lines
507 B
Nix
21 lines
507 B
Nix
{ 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;
|
|
};
|
|
}
|