mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
8718f93286
Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
41 lines
926 B
Nix
41 lines
926 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, cmake, git
|
|
, asio, catch2, spdlog
|
|
, IOKit, udev
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pc-ble-driver";
|
|
version = "4.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NordicSemiconductor";
|
|
repo = "pc-ble-driver";
|
|
rev = "v${version}";
|
|
sha256 = "1609x17sbfi668jfwyvnfk9z29w6cgzvgv67xcpvpx5jv0czpcdj";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DNRF_BLE_DRIVER_VERSION=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
buildInputs = [ asio catch2 spdlog ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
IOKit
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
udev
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Desktop library for Bluetooth low energy development";
|
|
homepage = "https://github.com/NordicSemiconductor/pc-ble-driver";
|
|
license = licenses.unfreeRedistributable;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ jschievink ];
|
|
};
|
|
}
|