summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/radio/svxlink
diff options
context:
space:
mode:
authorFrancesco Zanini <francesco@zanini.me>2020-01-18 13:54:43 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2020-01-18 13:54:43 +0100
commit2e2cb2890c6a42748f710c028bd963be64da4cc2 (patch)
tree1e86fc960e840eb20f60a77ded81463c621ec478 /pkgs/applications/radio/svxlink
parentf5c66062872f0b5094d6cd30cbc851f86eeba906 (diff)
svxlink: init at 19.09.1 (#76990)
Diffstat (limited to 'pkgs/applications/radio/svxlink')
-rw-r--r--pkgs/applications/radio/svxlink/default.nix71
1 files changed, 71 insertions, 0 deletions
diff --git a/pkgs/applications/radio/svxlink/default.nix b/pkgs/applications/radio/svxlink/default.nix
new file mode 100644
index 000000000000..e06fcb5d3e67
--- /dev/null
+++ b/pkgs/applications/radio/svxlink/default.nix
@@ -0,0 +1,71 @@
+{ stdenv, cmake, pkgconfig, fetchFromGitHub, makeDesktopItem, alsaLib, speex
+, libopus, curl, gsm, libgcrypt, libsigcxx, popt, qtbase, qttools
+, wrapQtAppsHook, rtl-sdr, tcl, doxygen, groff }:
+
+let
+ desktopItem = makeDesktopItem rec {
+ name = "Qtel";
+ exec = "qtel";
+ icon = "qtel";
+ desktopName = name;
+ genericName = "EchoLink Client";
+ categories = "HamRadio;Qt;Network;";
+ };
+
+in stdenv.mkDerivation rec {
+ pname = "svxlink";
+ version = "19.09.1";
+
+ src = fetchFromGitHub {
+ owner = "sm0svx";
+ repo = pname;
+ rev = version;
+ sha256 = "0xmbac821w9kl7imlz0mra19mlhi0rlpbyyay26w1y7h98j4g4yp";
+ };
+
+ cmakeFlags = [
+ "-DDO_INSTALL_CHOWN=NO"
+ "-DRTLSDR_LIBRARIES=${rtl-sdr}/lib/librtlsdr.so"
+ "-DRTLSDR_INCLUDE_DIRS=${rtl-sdr}/include"
+ "../src"
+ ];
+ enableParallelBuilding = true;
+ dontWrapQtApps = true;
+
+ nativeBuildInputs = [ cmake pkgconfig doxygen groff wrapQtAppsHook ];
+
+ buildInputs = [
+ alsaLib
+ curl
+ gsm
+ libgcrypt
+ libsigcxx
+ libopus
+ popt
+ qtbase
+ qttools
+ rtl-sdr
+ speex
+ tcl
+ ];
+
+ postInstall = ''
+ rm -f $out/share/applications/*
+ cp -v ${desktopItem}/share/applications/* $out/share/applications
+ mv $out/share/icons/link.xpm $out/share/icons/qtel.xpm
+
+ wrapQtApp $out/bin/qtel
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Advanced repeater controller and EchoLink software";
+ longDescription = ''
+ Advanced repeater controller and EchoLink software for Linux including a
+ GUI, Qtel - The Qt EchoLink client
+ '';
+ homepage = "http://www.svxlink.org/";
+ license = with licenses; [ gpl2 ];
+ maintainers = with maintainers; [ zaninime ];
+ platforms = platforms.linux;
+ };
+}