Merge pull request #229954 from markuskowa/upd-libbladerf

libbladerf: 2.4.0 -> 2.5.0
This commit is contained in:
markuskowa 2023-05-05 18:06:19 +02:00 committed by GitHub
commit 395077ba58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,16 @@
{ stdenv, lib, fetchFromGitHub, fetchpatch, pkg-config, cmake, git, doxygen, help2man, ncurses, tecla
, libusb1, udev }:
let
# fetch submodule
noos = fetchFromGitHub {
owner = "analogdevicesinc";
repo = "no-OS";
rev = "0bba46e6f6f75785a65d425ece37d0a04daf6157";
sha256 = "0is79dhsyp9xmlnfdr1i5s1c22ipjafk9d35jpn5dynpvj86m99c";
};
in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "libbladeRF";
version = "2.4.1";
version = "2.5.0";
src = fetchFromGitHub {
owner = "Nuand";
repo = "bladeRF";
rev = "libbladeRF_v${version}";
sha256 = "05axh51lrzxpz2qfswnjwxpfk3mlsv2wc88dd12gfr1karn5jwz9";
sha256 = "sha256-H40w5YKp6M3QLrsPhILEnJiWutCYLtbgC4a63sV397Q=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake pkg-config git doxygen help2man ];
@ -25,11 +19,6 @@ in stdenv.mkDerivation rec {
++ lib.optionals stdenv.isLinux [ udev ]
++ lib.optionals stdenv.isDarwin [ ncurses ];
postUnpack = ''
cp -r ${noos}/* source/thirdparty/analogdevicesinc/no-OS/
'';
# Fixup shebang
prePatch = "patchShebangs host/utilities/bladeRF-cli/src/cmd/doc/generate.bash";
@ -46,18 +35,13 @@ in stdenv.mkDerivation rec {
"-DBLADERF_GROUP=bladerf"
];
env.NIX_CFLAGS_COMPILE = toString [
# Needed with GCC 12
"-Wno-error=array-bounds"
];
hardeningDisable = [ "fortify" ];
meta = with lib; {
homepage = "https://nuand.com/libbladeRF-doc";
description = "Supporting library of the BladeRF SDR opensource hardware";
license = licenses.lgpl21;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.unix;
};
}