nixpkgs/pkgs/development/tools/misc/uhd/default.nix

62 lines
2 KiB
Nix
Raw Normal View History

2016-03-22 00:15:40 +00:00
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig
, python, pythonPackages, orc, libusb1, boost }:
# You need these udev rules to not have to run as root (copied from
# ${uhd}/share/uhd/utils/uhd-usrp.rules):
#
# SUBSYSTEMS=="usb", ATTRS{idVendor}=="fffe", ATTRS{idProduct}=="0002", MODE:="0666"
# SUBSYSTEMS=="usb", ATTRS{idVendor}=="2500", ATTRS{idProduct}=="0002", MODE:="0666"
stdenv.mkDerivation rec {
name = "uhd-${version}";
2017-08-24 18:40:34 +00:00
version = "3.10.2.0";
# UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz
# and xxx.yyy.zzz. Hrmpf...
2016-03-22 00:15:40 +00:00
src = fetchFromGitHub {
owner = "EttusResearch";
repo = "uhd";
2017-08-24 18:40:34 +00:00
rev = "release_003_010_002_000";
sha256 = "0g6f4amw7h0vr6faa1nc1zs3bc645binza0zqqx5cwgfxybv8cfy";
};
2016-03-22 00:15:40 +00:00
enableParallelBuilding = true;
cmakeFlags = "-DLIBUSB_INCLUDE_DIRS=${libusb1.dev}/include/libusb-1.0";
2016-03-22 00:15:40 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ python pythonPackages.pyramid_mako orc libusb1 boost ];
# Build only the host software
preConfigure = "cd host";
# Firmware images are downloaded (pre-built)
2016-03-22 00:15:40 +00:00
uhdImagesName = "uhd-images_003.007.003-release";
uhdImagesSrc = fetchurl {
url = "http://files.ettus.com/binaries/maint_images/archive/${uhdImagesName}.tar.gz";
2016-03-22 00:15:40 +00:00
sha256 = "1pv5c5902041494z0jfw623ca29pvylrw5klybbhklvn5wwlr6cv";
};
postPhases = [ "installFirmware" ];
installFirmware = ''
tar --strip-components=1 -xvf "${uhdImagesSrc}" -C "$out"
'';
meta = with stdenv.lib; {
description = "USRP Hardware Driver (for Software Defined Radio)";
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.
'';
2017-06-20 01:26:14 +00:00
homepage = https://uhd.ettus.com/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
2016-03-22 00:15:40 +00:00
maintainers = with maintainers; [ bjornfor fpletz ];
};
}