2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
2017-12-19 13:32:26 -08:00
|
|
|
, qtbase, qtcharts, qtmultimedia, qtquickcontrols, qtquickcontrols2
|
2018-04-25 11:58:50 -07:00
|
|
|
, faad2, rtl-sdr, soapysdr-with-plugins, libusb, fftwSinglePrec }:
|
2017-12-19 13:32:26 -08:00
|
|
|
let
|
|
|
|
|
2018-11-13 14:26:42 -08:00
|
|
|
version = "1.0";
|
2017-12-19 13:32:26 -08:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "welle-io";
|
|
|
|
inherit version;
|
2017-12-19 13:32:26 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlbrechtL";
|
|
|
|
repo = "welle.io";
|
|
|
|
rev = "V${version}";
|
2018-11-13 14:26:42 -08:00
|
|
|
sha256 = "1fsr0c2w16z45mcr85sqmllw1xf2gn6hp6f6fmgx2zfprq8gdmcr";
|
2017-12-19 13:32:26 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
faad2
|
|
|
|
fftwSinglePrec
|
|
|
|
libusb
|
|
|
|
qtbase
|
|
|
|
qtcharts
|
|
|
|
qtmultimedia
|
|
|
|
qtquickcontrols
|
|
|
|
qtquickcontrols2
|
|
|
|
rtl-sdr
|
2018-04-25 11:58:50 -07:00
|
|
|
soapysdr-with-plugins
|
2017-12-19 13:32:26 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2018-04-25 11:58:50 -07:00
|
|
|
"-DRTLSDR=true" "-DSOAPYSDR=true"
|
2017-12-19 13:32:26 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A DAB/DAB+ Software Radio";
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://www.welle.io/;
|
2019-02-09 11:49:03 -08:00
|
|
|
maintainers = with maintainers; [ ck3d markuskowa ];
|
2017-12-19 13:32:26 -08:00
|
|
|
license = licenses.gpl2;
|
2018-04-26 01:17:40 -07:00
|
|
|
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin;
|
2017-12-19 13:32:26 -08:00
|
|
|
};
|
|
|
|
}
|