2018-02-17 12:06:27 +01:00
|
|
|
{ stdenv, fetchurl, asciidoc, asciidoctor, autoconf, automake, cmake,
|
2019-08-11 01:54:55 +02:00
|
|
|
docbook_xsl, fftw, fftwFloat, gfortran, libtool, libusb1, qtbase,
|
2019-08-20 10:01:16 +02:00
|
|
|
qtmultimedia, qtserialport, qttools, texinfo, wrapQtAppsHook }:
|
2018-02-17 12:06:27 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-20 10:01:16 +02:00
|
|
|
pname = "wsjtx";
|
2019-12-10 03:03:23 +01:00
|
|
|
version = "2.1.2";
|
2018-02-17 12:06:27 +01:00
|
|
|
|
2019-01-05 16:16:52 +01:00
|
|
|
# This is a "superbuild" tarball containing both wsjtx and a hamlib fork
|
2018-02-17 12:06:27 +01:00
|
|
|
src = fetchurl {
|
2019-01-05 16:16:52 +01:00
|
|
|
url = "http://physics.princeton.edu/pulsar/k1jt/wsjtx-${version}.tgz";
|
2019-12-10 03:03:23 +01:00
|
|
|
sha256 = "0aj3wg5xjjqwjvw6lra171ag5wq86w0hf1ra4k8mnaf0mc1qgbyl";
|
2018-02-17 12:06:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Hamlib builds with autotools, wsjtx builds with cmake
|
|
|
|
# Omitting pkgconfig because it causes issues locating the built hamlib
|
|
|
|
nativeBuildInputs = [
|
|
|
|
asciidoc asciidoctor autoconf automake cmake docbook_xsl gfortran libtool
|
2019-08-20 10:01:16 +02:00
|
|
|
qttools texinfo wrapQtAppsHook
|
2018-02-17 12:06:27 +01:00
|
|
|
];
|
|
|
|
buildInputs = [ fftw fftwFloat libusb1 qtbase qtmultimedia qtserialport ];
|
|
|
|
|
2019-01-05 16:16:52 +01:00
|
|
|
# Remove Git dependency from superbuild since sources are included
|
|
|
|
patches = [ ./super.patch ];
|
|
|
|
|
|
|
|
# Superbuild has its own patch step after it extracts the inner archives
|
2018-02-17 12:06:27 +01:00
|
|
|
postPatch = "cp ${./wsjtx.patch} wsjtx.patch";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Weak-signal digital communication modes for amateur radio";
|
|
|
|
longDescription = ''
|
2019-08-11 01:54:55 +02:00
|
|
|
WSJT-X implements communication protocols or "modes" called FT4, FT8, JT4,
|
|
|
|
JT9, JT65, QRA64, ISCAT, MSK144, and WSPR, as well as one called Echo for
|
2018-02-17 12:06:27 +01:00
|
|
|
detecting and measuring your own radio signals reflected from the Moon.
|
|
|
|
These modes were all designed for making reliable, confirmed ham radio
|
|
|
|
contacts under extreme weak-signal conditions.
|
|
|
|
'';
|
2019-08-20 10:01:16 +02:00
|
|
|
homepage = "https://physics.princeton.edu/pulsar/k1jt/wsjtx.html";
|
2018-02-17 12:06:27 +01:00
|
|
|
# Older licenses are for the statically-linked hamlib
|
|
|
|
license = with licenses; [ gpl3Plus gpl2Plus lgpl21Plus ];
|
|
|
|
platforms = platforms.linux;
|
2019-08-11 01:54:55 +02:00
|
|
|
maintainers = with maintainers; [ lasandell ];
|
2018-02-17 12:06:27 +01:00
|
|
|
};
|
|
|
|
}
|