pc-ble-driver: fix build on aarch64-darwin, little cleanups (#192565)

main
Theodore Ni 2 years ago committed by GitHub
parent ab5003daa5
commit 3955ba389c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      pkgs/development/libraries/pc-ble-driver/default.nix

@ -10,21 +10,28 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "NordicSemiconductor";
repo = "pc-ble-driver";
repo = pname;
rev = "v${version}";
sha256 = "1609x17sbfi668jfwyvnfk9z29w6cgzvgv67xcpvpx5jv0czpcdj";
hash = "sha256-srH7Gdiy9Lsv68fst/9jhifx03R2e+4kMia6pU/oCZg=";
};
patches = [
(fetchpatch {
name = "support-arm.patch";
url = "https://github.com/NordicSemiconductor/pc-ble-driver/commit/76a6b31dba7a13ceae40587494cbfa01a29192f4.patch";
hash = "sha256-bvK1BXjdlhIXV8R4PiCGaq8oSLzgjMmTgAwssm8N2sk=";
})
# Fix build with GCC 11
(fetchpatch {
url = "https://github.com/NordicSemiconductor/pc-ble-driver/commit/37258e65bdbcd0b4369ae448faf650dd181816ec.patch";
sha256 = "sha256-gOdzIW8YJQC+PE4FJd644I1+I7CMcBY8wpF6g02eI5g=";
hash = "sha256-gOdzIW8YJQC+PE4FJd644I1+I7CMcBY8wpF6g02eI5g=";
})
];
cmakeFlags = [
"-DNRF_BLE_DRIVER_VERSION=${version}"
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
"-DARCH=arm64"
];
nativeBuildInputs = [ cmake git ];

Loading…
Cancel
Save