2021-01-17 03:09:27 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
|
2020-05-12 23:00:17 +02:00
|
|
|
, qtbase, qtcharts, qtmultimedia, qtquickcontrols, qtquickcontrols2, qtgraphicaleffects
|
2021-05-29 21:20:19 +02:00
|
|
|
, faad2, rtl-sdr, soapysdr-with-plugins, libusb-compat-0_1, fftwSinglePrec, lame, mpg123
|
|
|
|
} :
|
2017-12-19 22:32:26 +01:00
|
|
|
|
2021-05-29 21:20:19 +02:00
|
|
|
mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "welle-io";
|
2021-05-29 21:20:19 +02:00
|
|
|
version = "2.3";
|
2017-12-19 22:32:26 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlbrechtL";
|
|
|
|
repo = "welle.io";
|
2019-10-30 23:30:18 +01:00
|
|
|
rev = "v${version}";
|
2021-05-29 21:20:19 +02:00
|
|
|
sha256 = "1xl1lanw0xgmgks67dbfb2h52jxnrd1i2zik56v0q8dwsr7f0daw";
|
2017-12-19 22:32:26 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2017-12-19 22:32:26 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
faad2
|
|
|
|
fftwSinglePrec
|
2019-10-30 23:30:18 +01:00
|
|
|
lame
|
2020-04-28 05:29:39 +02:00
|
|
|
libusb-compat-0_1
|
2019-10-30 23:30:18 +01:00
|
|
|
mpg123
|
2017-12-19 22:32:26 +01:00
|
|
|
qtbase
|
|
|
|
qtcharts
|
|
|
|
qtmultimedia
|
|
|
|
qtquickcontrols
|
|
|
|
qtquickcontrols2
|
2020-05-12 23:00:17 +02:00
|
|
|
qtgraphicaleffects
|
2017-12-19 22:32:26 +01:00
|
|
|
rtl-sdr
|
2018-04-25 20:58:50 +02:00
|
|
|
soapysdr-with-plugins
|
2017-12-19 22:32:26 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2018-04-25 20:58:50 +02:00
|
|
|
"-DRTLSDR=true" "-DSOAPYSDR=true"
|
2017-12-19 22:32:26 +01:00
|
|
|
];
|
|
|
|
|
2019-10-30 23:30:18 +01:00
|
|
|
meta = with lib; {
|
2017-12-19 22:32:26 +01:00
|
|
|
description = "A DAB/DAB+ Software Radio";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.welle.io/";
|
2019-02-09 20:49:03 +01:00
|
|
|
maintainers = with maintainers; [ ck3d markuskowa ];
|
2021-02-01 13:33:14 +01:00
|
|
|
license = licenses.gpl2Only;
|
2018-04-26 10:17:40 +02:00
|
|
|
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin;
|
2017-12-19 22:32:26 +01:00
|
|
|
};
|
|
|
|
}
|