summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/radio/openwebrx
diff options
context:
space:
mode:
authorAstro <astro@spaceboyz.net>2021-11-09 22:52:46 +0100
committerAstro <astro@spaceboyz.net>2021-11-10 23:42:18 +0100
commit5ab365c2a90df7a57d100aea20ed83be269c3c22 (patch)
tree55141ad011254f72c4f9a77d9a620a5350bf2214 /pkgs/applications/radio/openwebrx
parenta3b504854c49e40f18dbe507559a387c7f669b9b (diff)
openwebrx: init at 1.1.0
Diffstat (limited to 'pkgs/applications/radio/openwebrx')
-rw-r--r--pkgs/applications/radio/openwebrx/default.nix92
1 files changed, 92 insertions, 0 deletions
diff --git a/pkgs/applications/radio/openwebrx/default.nix b/pkgs/applications/radio/openwebrx/default.nix
new file mode 100644
index 000000000000..928bc4168ebd
--- /dev/null
+++ b/pkgs/applications/radio/openwebrx/default.nix
@@ -0,0 +1,92 @@
+{ stdenv, lib, buildPythonPackage, buildPythonApplication, fetchFromGitHub
+, pkg-config, cmake, setuptools
+, rtl-sdr, soapysdr-with-plugins, csdr, direwolf
+}:
+
+let
+
+ js8py = buildPythonPackage rec {
+ pname = "js8py";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "jketterl";
+ repo = pname;
+ rev = version;
+ sha256 = "1j80zclg1cl5clqd00qqa16prz7cyc32bvxqz2mh540cirygq24w";
+ };
+
+ pythonImportsCheck = [ "js8py" "test" ];
+
+ meta = with lib; {
+ homepage = "https://github.com/jketterl/js8py";
+ description = "A library to decode the output of the js8 binary of JS8Call";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ astro ];
+ };
+ };
+
+ owrx_connector = stdenv.mkDerivation rec {
+ pname = "owrx_connector";
+ version = "0.5.0";
+
+ src = fetchFromGitHub {
+ owner = "jketterl";
+ repo = pname;
+ rev = version;
+ sha256 = "0gz4nf2frrkx1mpjfjpz2j919fkc99g5lxd8lhva3lgqyisvf4yj";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ pkg-config
+ ];
+
+ buildInputs = [
+ rtl-sdr
+ soapysdr-with-plugins
+ ];
+
+ meta = with lib; {
+ homepage = "https://github.com/jketterl/owrx_connector";
+ description = "A set of connectors that are used by OpenWebRX to interface with SDR hardware";
+ license = licenses.gpl3Only;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ astro ];
+ };
+ };
+
+in
+buildPythonApplication rec {
+ pname = "openwebrx";
+ version = "1.1.0";
+
+ src = fetchFromGitHub {
+ owner = "jketterl";
+ repo = pname;
+ rev = version;
+ sha256 = "0maxs07yx235xknvkbmhi2zds3vfkd66l6wz6kspz3jzl4c0v1f9";
+ };
+
+ propagatedBuildInputs = [
+ setuptools
+ csdr
+ js8py
+ soapysdr-with-plugins
+ owrx_connector
+ direwolf
+ ];
+
+ pythonImportsCheck = [ "csdr" "owrx" "test" ];
+
+ passthru = {
+ inherit js8py owrx_connector;
+ };
+
+ meta = with lib; {
+ homepage = "https://github.com/jketterl/openwebrx";
+ description = "A simple DSP library and command-line tool for Software Defined Radio";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ astro ];
+ };
+}