mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Provide libbladeRF package support
The BladeRF Software Defined Radio (SDR) is an open-source hardware platform for radio research. This package provides the libbladeRF system library and the corresponding bladeRF-cli tooling. Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
parent
35af8c6105
commit
67aec4b2d8
2 changed files with 33 additions and 0 deletions
31
pkgs/development/libraries/libbladeRF/default.nix
Normal file
31
pkgs/development/libraries/libbladeRF/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchgit, pkgconfig, libftdi, libusb, udev, cmake, git }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.0";
|
||||
name = "libbladeRF-v${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/Nuand/bladeRF/";
|
||||
rev = "refs/tags/libbladeRF_v${version}";
|
||||
sha256 = "19qd26yflig51scknyjf3r3nmnc2bni75294jpsv0idzqfj87lbr";
|
||||
name = "libbladeRF_v${version}-checkout";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libftdi libusb udev cmake git ];
|
||||
|
||||
# XXX: documentation fails to build due to a "undeclared here" bug.
|
||||
# requires pandoc in buildInputs also..
|
||||
# YYY: udev rule wont install to "/etc/udev/rules.d/88-nuand.rules"???
|
||||
configurePhase = ''
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug -DINSTALL_UDEV_RULES=OFF \
|
||||
-DBUILD_BLADERF_CLI_DOCUMENTATION=OFF -DCMAKE_INSTALL_PREFIX=$out .
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.nuand.com/";
|
||||
description = "Supporting library of the BladeRF SDR opensource hardware";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
maintainers = [ stdenv.lib.maintainers.funfunctor ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -1224,6 +1224,8 @@ let
|
|||
|
||||
libbsd = callPackage ../development/libraries/libbsd { };
|
||||
|
||||
libbladeRF = callPackage ../development/libraries/libbladeRF { };
|
||||
|
||||
lprof = callPackage ../tools/graphics/lprof { };
|
||||
|
||||
fdk_aac = callPackage ../development/libraries/fdk-aac { };
|
||||
|
|
Loading…
Reference in a new issue