sdrangel: 6.4.0 -> 6.8.0
This commit is contained in:
parent
4be05878ea
commit
22c7e4f3d9
|
@ -1,54 +1,78 @@
|
||||||
{
|
{ airspy
|
||||||
airspy,
|
, boost
|
||||||
boost,
|
, cm256cc
|
||||||
cm256cc,
|
, cmake
|
||||||
cmake,
|
, codec2
|
||||||
codec2,
|
, fetchFromGitHub
|
||||||
fetchFromGitHub,
|
, fftwFloat
|
||||||
fftwFloat,
|
, glew
|
||||||
glew,
|
, hackrf
|
||||||
hackrf,
|
, lib
|
||||||
lib,
|
, ffmpeg
|
||||||
ffmpeg,
|
, libiio
|
||||||
libiio,
|
, libopus
|
||||||
libopus,
|
, libpulseaudio
|
||||||
libpulseaudio,
|
, libusb1
|
||||||
libusb1,
|
, limesuite
|
||||||
limesuite,
|
, libbladeRF
|
||||||
libbladeRF,
|
, mkDerivation
|
||||||
mkDerivation,
|
, ocl-icd
|
||||||
ocl-icd,
|
, opencv3
|
||||||
opencv3,
|
, pkg-config
|
||||||
pkg-config,
|
, qtcharts
|
||||||
qtbase,
|
, qtlocation
|
||||||
qtmultimedia,
|
, qtmultimedia
|
||||||
qtserialport,
|
, qtserialport
|
||||||
qtwebsockets,
|
, qtspeech
|
||||||
rtl-sdr,
|
, qtwebsockets
|
||||||
serialdv,
|
, rtl-sdr
|
||||||
soapysdr-with-plugins,
|
, serialdv
|
||||||
uhd
|
, soapysdr-with-plugins
|
||||||
|
, uhd
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "sdrangel";
|
pname = "sdrangel";
|
||||||
version = "6.4.0";
|
version = "6.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "f4exb";
|
owner = "f4exb";
|
||||||
repo = "sdrangel";
|
repo = "sdrangel";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "4iJoKs0BHmBR6JRFuTIqs0GW3SjhPRMPRlqdyTI38T4=";
|
sha256 = "sha256-dFWwEs2nvcaCWpM4tA3/w8PbmNXn/R7JvxP3XEHasSQ=";
|
||||||
fetchSubmodules = false;
|
fetchSubmodules = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glew opencv3 libusb1 boost libopus limesuite ffmpeg libiio libpulseaudio
|
airspy
|
||||||
qtbase qtwebsockets qtmultimedia rtl-sdr airspy hackrf
|
boost
|
||||||
fftwFloat codec2 cm256cc serialdv qtserialport
|
cm256cc
|
||||||
libbladeRF uhd soapysdr-with-plugins
|
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 = [
|
cmakeFlags = [
|
||||||
"-DLIBSERIALDV_INCLUDE_DIR:PATH=${serialdv}/include/serialdv"
|
"-DLIBSERIALDV_INCLUDE_DIR:PATH=${serialdv}/include/serialdv"
|
||||||
"-DLIMESUITE_INCLUDE_DIR:PATH=${limesuite}/include"
|
"-DLIMESUITE_INCLUDE_DIR:PATH=${limesuite}/include"
|
||||||
|
@ -61,11 +85,11 @@ mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Software defined radio (SDR) software";
|
description = "Software defined radio (SDR) software";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
SDRangel is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/f4exb/sdrangel";
|
homepage = "https://github.com/f4exb/sdrangel";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ alkeryn ];
|
maintainers = with maintainers; [ alkeryn ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue