openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / by-name / li / libbladeRF / package.nix
blobccf75f7e7aab1a09a7f1fc199aa27db395d7f40c
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   pkg-config,
6   cmake,
7   git,
8   doxygen,
9   help2man,
10   ncurses,
11   tecla,
12   libusb1,
13   udev,
16 stdenv.mkDerivation rec {
17   pname = "libbladeRF";
18   version = "2.5.0";
20   src = fetchFromGitHub {
21     owner = "Nuand";
22     repo = "bladeRF";
23     rev = "libbladeRF_v${version}";
24     hash = "sha256-H40w5YKp6M3QLrsPhILEnJiWutCYLtbgC4a63sV397Q=";
25     fetchSubmodules = true;
26   };
28   patches = [
29     # https://github.com/Nuand/bladeRF/issues/994
30     ./gcc-14-calloc-fixes.diff
31   ];
33   nativeBuildInputs = [
34     cmake
35     pkg-config
36     git
37     doxygen
38     help2man
39   ];
40   # ncurses used due to https://github.com/Nuand/bladeRF/blob/ab4fc672c8bab4f8be34e8917d3f241b1d52d0b8/host/utilities/bladeRF-cli/CMakeLists.txt#L208
41   buildInputs =
42     [
43       tecla
44       libusb1
45     ]
46     ++ lib.optionals stdenv.hostPlatform.isLinux [ udev ]
47     ++ lib.optionals stdenv.hostPlatform.isDarwin [ ncurses ];
49   # Fixup shebang
50   prePatch = "patchShebangs host/utilities/bladeRF-cli/src/cmd/doc/generate.bash";
52   # Let us avoid nettools as a dependency.
53   postPatch = ''
54     sed -i 's/$(hostname)/hostname/' host/utilities/bladeRF-cli/src/cmd/doc/generate.bash
55   '';
57   cmakeFlags =
58     [
59       "-DBUILD_DOCUMENTATION=ON"
60     ]
61     ++ lib.optionals stdenv.hostPlatform.isLinux [
62       "-DUDEV_RULES_PATH=etc/udev/rules.d"
63       "-DINSTALL_UDEV_RULES=ON"
64       "-DBLADERF_GROUP=bladerf"
65     ];
67   env = lib.optionalAttrs stdenv.cc.isClang {
68     NIX_CFLAGS_COMPILE = "-Wno-error=unused-but-set-variable";
69   };
71   hardeningDisable = [ "fortify" ];
73   meta = with lib; {
74     homepage = "https://nuand.com/libbladeRF-doc";
75     description = "Supporting library of the BladeRF SDR opensource hardware";
76     license = licenses.lgpl21;
77     maintainers = with maintainers; [ markuskowa ];
78     platforms = platforms.unix;
79   };