nixpkgs/pkgs/applications/radio/welle-io/default.nix

48 lines
1 KiB
Nix
Raw Normal View History

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