Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 37 lines 574 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 glib, 7 dbus, 8 openobex, 9 bluez, 10 libical, 11}: 12 13stdenv.mkDerivation rec { 14 pname = "obexd"; 15 version = "0.48"; 16 17 src = fetchurl { 18 url = "mirror://kernel/linux/bluetooth/obexd-${version}.tar.bz2"; 19 sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8"; 20 }; 21 22 buildInputs = [ 23 glib 24 dbus 25 openobex 26 bluez 27 libical 28 ]; 29 30 nativeBuildInputs = [ pkg-config ]; 31 32 meta = with lib; { 33 homepage = "https://www.bluez.org/"; 34 platforms = platforms.linux; 35 license = licenses.gpl3; 36 }; 37}