Merge pull request #60337 from lasandell/cubicsdr-0.2.5
cubicsdr: init at 0.2.5
This commit is contained in:
commit
518e907d8e
2 changed files with 31 additions and 0 deletions
29
pkgs/applications/radio/cubicsdr/default.nix
Normal file
29
pkgs/applications/radio/cubicsdr/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp,
|
||||||
|
pkgconfig, soapysdr-with-plugins, wxGTK, enableDigitalLab ? false }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cubicsdr-${version}";
|
||||||
|
version = "0.2.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cjcliffe";
|
||||||
|
repo = "CubicSDR";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1ihbn18bzdcdvwpa4hnb55ns38bj4b8xy53hkmra809f9qpbcjhn";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DUSE_HAMLIB=ON" ]
|
||||||
|
++ stdenv.lib.optional enableDigitalLab "-DENABLE_DIGITAL_LAB=ON";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://cubicsdr.com;
|
||||||
|
description = "Software Defined Radio application";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ lasandell ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -16936,6 +16936,8 @@ in
|
||||||
|
|
||||||
ctop = callPackage ../tools/system/ctop { };
|
ctop = callPackage ../tools/system/ctop { };
|
||||||
|
|
||||||
|
cubicsdr = callPackage ../applications/radio/cubicsdr { wxGTK = wxGTK31; };
|
||||||
|
|
||||||
cuneiform = callPackage ../tools/graphics/cuneiform {};
|
cuneiform = callPackage ../tools/graphics/cuneiform {};
|
||||||
|
|
||||||
curseradio = callPackage ../applications/audio/curseradio { };
|
curseradio = callPackage ../applications/audio/curseradio { };
|
||||||
|
|
Loading…
Reference in a new issue