2021-02-23 16:08:16 +00:00
{ lib
, stdenv
2020-03-09 12:16:25 +00:00
, fetchurl
, fetchFromGitHub
, cmake
2021-01-17 02:09:27 +00:00
, pkg-config
2020-03-09 15:21:20 +00:00
# See https://files.ettus.com/manual_archive/v3.15.0.0/html/page_build_guide.html for dependencies explanations
2020-03-09 12:16:25 +00:00
, boost
2023-03-16 06:21:25 +00:00
, ncurses
2021-12-22 15:13:49 +00:00
, enableCApi ? true
2020-03-09 15:21:20 +00:00
# requires numpy
2021-12-22 15:13:49 +00:00
, enablePythonApi ? false
2021-02-23 16:08:16 +00:00
, python3
2020-03-09 15:21:20 +00:00
, enableExamples ? false
, enableUtils ? false
2021-12-22 15:13:49 +00:00
, enableSim ? false
2021-02-23 16:08:16 +00:00
, libusb1
2020-03-09 15:21:20 +00:00
, enableDpdk ? false
2021-02-23 16:08:16 +00:00
, dpdk
2020-03-09 15:21:20 +00:00
# Devices
, enableOctoClock ? true
, enableMpmd ? true
, enableB100 ? true
, enableB200 ? true
, enableUsrp1 ? true
, enableUsrp2 ? true
, enableX300 ? true
, enableN300 ? true
, enableN320 ? true
, enableE300 ? true
, enableE320 ? true
2020-03-09 12:16:25 +00:00
} :
2013-05-02 13:27:11 +00:00
2020-03-09 15:21:20 +00:00
let
onOffBool = b : if b then " O N " else " O F F " ;
2021-01-15 05:42:41 +00:00
inherit ( lib ) optionals ;
2020-03-09 15:21:20 +00:00
in
2020-03-09 12:06:14 +00:00
stdenv . mkDerivation rec {
pname = " u h d " ;
2013-05-02 13:27:11 +00:00
# UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz
2018-03-29 01:14:08 +00:00
# and xxx.yyy.zzz. Hrmpf... style keeps changing
2023-03-02 13:13:33 +00:00
version = " 4 . 4 . 0 . 0 " ;
2013-05-02 13:27:11 +00:00
2022-04-28 19:44:21 +00:00
outputs = [ " o u t " " d e v " ] ;
2016-03-22 00:15:40 +00:00
src = fetchFromGitHub {
owner = " E t t u s R e s e a r c h " ;
repo = " u h d " ;
2020-03-09 12:06:14 +00:00
rev = " v ${ version } " ;
2023-03-02 13:13:33 +00:00
sha256 = " s h a 2 5 6 - k h V O H l v a c Z c 4 E M g 4 m 5 5 r x E q P v L Y 1 x U R p A f O W 9 0 5 / 3 j g = " ;
2020-03-09 12:06:14 +00:00
} ;
# Firmware images are downloaded (pre-built) from the respective release on Github
uhdImagesSrc = fetchurl {
url = " h t t p s : / / g i t h u b . c o m / E t t u s R e s e a r c h / u h d / r e l e a s e s / d o w n l o a d / v ${ version } / u h d - i m a g e s _ ${ version } . t a r . x z " ;
2023-03-02 13:13:33 +00:00
sha256 = " V 8 l d W 8 b v Y W b r D A v p W p H c M e L f 9 Y v F 8 P I r u D A y N K / b r u 4 = " ;
2013-05-02 13:27:11 +00:00
} ;
2020-03-09 12:16:25 +00:00
cmakeFlags = [
2020-03-09 15:21:20 +00:00
" - D E N A B L E _ L I B U H D = O N "
" - D E N A B L E _ U S B = O N "
" - D E N A B L E _ T E S T S = O N " # This installs tests as well so we delete them via postPhases
" - D E N A B L E _ E X A M P L E S = ${ onOffBool enableExamples } "
" - D E N A B L E _ U T I L S = ${ onOffBool enableUtils } "
2021-12-22 15:13:49 +00:00
" - D E N A B L E _ C _ A P I = ${ onOffBool enableCApi } "
" - D E N A B L E _ P Y T H O N _ A P I = ${ onOffBool enablePythonApi } "
2020-03-09 15:21:20 +00:00
" - D E N A B L E _ D P D K = ${ onOffBool enableDpdk } "
# Devices
" - D E N A B L E _ O C T O C L O C K = ${ onOffBool enableOctoClock } "
" - D E N A B L E _ M P M D = ${ onOffBool enableMpmd } "
" - D E N A B L E _ B 1 0 0 = ${ onOffBool enableB100 } "
" - D E N A B L E _ B 2 0 0 = ${ onOffBool enableB200 } "
" - D E N A B L E _ U S R P 1 = ${ onOffBool enableUsrp1 } "
" - D E N A B L E _ U S R P 2 = ${ onOffBool enableUsrp2 } "
" - D E N A B L E _ X 3 0 0 = ${ onOffBool enableX300 } "
" - D E N A B L E _ N 3 0 0 = ${ onOffBool enableN300 } "
" - D E N A B L E _ N 3 2 0 = ${ onOffBool enableN320 } "
" - D E N A B L E _ E 3 0 0 = ${ onOffBool enableE300 } "
" - D E N A B L E _ E 3 2 0 = ${ onOffBool enableE320 } "
2020-03-09 12:16:25 +00:00
]
2020-03-09 12:31:30 +00:00
# TODO: Check if this still needed
2020-03-09 12:16:25 +00:00
# ABI differences GCC 7.1
# /nix/store/wd6r25miqbk9ia53pp669gn4wrg9n9cj-gcc-7.3.0/include/c++/7.3.0/bits/vector.tcc:394:7: note: parameter passing for argument of type 'std::vector<uhd::range_t>::iterator {aka __gnu_cxx::__normal_iterator<uhd::range_t*, std::vector<uhd::range_t> >}' changed in GCC 7.1
2021-01-15 05:42:41 +00:00
++ [ ( lib . optionalString stdenv . isAarch32 " - D C M A K E _ C X X _ F L A G S = - W n o - p s a b i " ) ]
2020-03-09 12:16:25 +00:00
;
2018-03-29 01:14:08 +00:00
2023-02-19 17:28:43 +00:00
# Python + mako are always required for the build itself but not necessary for runtime.
pythonEnv = python3 . withPackages ( ps : with ps ; [ mako ]
2021-12-22 15:13:49 +00:00
++ optionals ( enablePythonApi ) [ numpy setuptools ]
2020-03-09 15:21:20 +00:00
++ optionals ( enableUtils ) [ requests six ]
) ;
2020-03-09 12:16:25 +00:00
nativeBuildInputs = [
cmake
2021-01-17 02:09:27 +00:00
pkg-config
2020-03-09 15:21:20 +00:00
]
# If both enableLibuhd_Python_api and enableUtils are off, we don't need
# pythonEnv in buildInputs as it's a 'build' dependency and not a runtime
# dependency
2021-12-22 15:13:49 +00:00
++ optionals ( ! enablePythonApi && ! enableUtils ) [ pythonEnv ]
2020-03-09 15:21:20 +00:00
;
2019-10-30 23:47:28 +00:00
buildInputs = [
boost
2020-03-09 15:21:20 +00:00
libusb1
]
# However, if enableLibuhd_Python_api *or* enableUtils is on, we need
# pythonEnv for runtime as well. The utilities' runtime dependencies are
# handled at the environment
2023-03-16 06:21:25 +00:00
++ optionals ( enableExamples ) [ ncurses ncurses . dev ]
2021-12-22 15:13:49 +00:00
++ optionals ( enablePythonApi || enableUtils ) [ pythonEnv ]
2020-03-09 15:21:20 +00:00
++ optionals ( enableDpdk ) [ dpdk ]
;
2021-12-23 09:28:32 +00:00
# many tests fails on darwin, according to ofborg
doCheck = ! stdenv . isDarwin ;
2013-05-02 13:27:11 +00:00
# Build only the host software
preConfigure = " c d h o s t " ;
2020-03-09 12:31:30 +00:00
# TODO: Check if this still needed, perhaps relevant:
# https://files.ettus.com/manual_archive/v3.15.0.0/html/page_build_guide.html#build_instructions_unix_arm
2023-03-02 13:13:33 +00:00
patches = [
# Disable tests that fail in the sandbox
./no-adapter-tests.patch
] ++ lib . optionals stdenv . isAarch32 [
./neon.patch
] ;
2013-05-02 13:27:11 +00:00
2020-03-09 16:30:33 +00:00
postPhases = [ " i n s t a l l F i r m w a r e " " r e m o v e I n s t a l l e d T e s t s " ]
2023-03-16 06:21:25 +00:00
++ optionals ( enableUtils && stdenv . targetPlatform . isLinux ) [ " m o v e U d e v R u l e s " ]
2020-03-09 16:30:33 +00:00
;
2013-05-02 13:27:11 +00:00
2018-06-26 21:47:22 +00:00
# UHD expects images in `$CMAKE_INSTALL_PREFIX/share/uhd/images`
2013-05-02 13:27:11 +00:00
installFirmware = ''
2018-06-26 21:47:22 +00:00
mkdir - p " $ o u t / s h a r e / u h d / i m a g e s "
tar - - strip-components = 1 - xvf " ${ uhdImagesSrc } " - C " $ o u t / s h a r e / u h d / i m a g e s "
2013-05-02 13:27:11 +00:00
'' ;
2020-03-09 15:21:20 +00:00
# -DENABLE_TESTS=ON installs the tests, we don't need them in the output
removeInstalledTests = ''
rm - r $ out/lib/uhd/tests
'' ;
2020-03-09 16:30:33 +00:00
# Moves the udev rules to the standard location, needed only if utils are
# enabled
moveUdevRules = ''
mkdir - p $ out/lib/udev/rules.d
mv $ out/lib/uhd/utils/uhd-usrp.rules $ out/lib/udev/rules.d /
'' ;
2021-01-11 07:54:33 +00:00
meta = with lib ; {
2013-05-02 13:27:11 +00:00
description = " U S R P H a r d w a r e D r i v e r ( f o r S o f t w a r e D e f i n e d R a d i o ) " ;
longDescription = ''
The USRP Hardware Driver ( UHD ) software is the hardware driver for all
USRP ( Universal Software Radio Peripheral ) devices .
USRP devices are designed and sold by Ettus Research , LLC and its parent
company , National Instruments .
'' ;
2020-04-03 11:55:06 +00:00
homepage = " h t t p s : / / u h d . e t t u s . c o m / " ;
2013-05-02 13:27:11 +00:00
license = licenses . gpl3Plus ;
2017-05-26 03:15:15 +00:00
platforms = platforms . linux ++ platforms . darwin ;
2021-12-22 15:13:49 +00:00
maintainers = with maintainers ; [ bjornfor fpletz tomberek doronbehar ] ;
2013-05-02 13:27:11 +00:00
} ;
}