nixpkgs/pkgs/tools/bluetooth/obexd/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

19 lines
436 B
Nix

{ 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 ];
nativeBuildInputs = [ pkgconfig ];
meta = {
homepage = http://www.bluez.org/;
};
}