mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
96 lines
1.7 KiB
Nix
96 lines
1.7 KiB
Nix
{ airspy
|
|
, boost
|
|
, cm256cc
|
|
, cmake
|
|
, codec2
|
|
, fetchFromGitHub
|
|
, fftwFloat
|
|
, glew
|
|
, hackrf
|
|
, lib
|
|
, ffmpeg
|
|
, libiio
|
|
, libopus
|
|
, libpulseaudio
|
|
, libusb1
|
|
, limesuite
|
|
, libbladeRF
|
|
, mkDerivation
|
|
, ocl-icd
|
|
, opencv3
|
|
, pkg-config
|
|
, qtcharts
|
|
, qtlocation
|
|
, qtmultimedia
|
|
, qtserialport
|
|
, qtspeech
|
|
, qtwebsockets
|
|
, rtl-sdr
|
|
, serialdv
|
|
, soapysdr-with-plugins
|
|
, uhd
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "sdrangel";
|
|
version = "6.16.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "f4exb";
|
|
repo = "sdrangel";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wWGKJWd3JDaT0dDMUrxv9ShMVe+q4zvH8SjyKw7UIbo=";
|
|
fetchSubmodules = false;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
airspy
|
|
boost
|
|
cm256cc
|
|
codec2
|
|
ffmpeg
|
|
fftwFloat
|
|
glew
|
|
hackrf
|
|
libbladeRF
|
|
libiio
|
|
libopus
|
|
libpulseaudio
|
|
libusb1
|
|
limesuite
|
|
opencv3
|
|
qtcharts
|
|
qtlocation
|
|
qtmultimedia
|
|
qtserialport
|
|
qtspeech
|
|
qtwebsockets
|
|
rtl-sdr
|
|
serialdv
|
|
soapysdr-with-plugins
|
|
uhd
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DLIBSERIALDV_INCLUDE_DIR:PATH=${serialdv}/include/serialdv"
|
|
"-DLIMESUITE_INCLUDE_DIR:PATH=${limesuite}/include"
|
|
"-DLIMESUITE_LIBRARY:FILEPATH=${limesuite}/lib/libLimeSuite.so"
|
|
"-DSOAPYSDR_DIR=${soapysdr-with-plugins}"
|
|
];
|
|
|
|
LD_LIBRARY_PATH = "${ocl-icd}/lib";
|
|
|
|
meta = with lib; {
|
|
description = "Software defined radio (SDR) software";
|
|
longDescription = ''
|
|
SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
|
'';
|
|
homepage = "https://github.com/f4exb/sdrangel";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ alkeryn ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|