nixpkgs/pkgs/applications/radio/wsjtx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.3 KiB
Nix
Raw Normal View History

2023-11-08 23:24:10 +00:00
{ lib, stdenv, fetchgit, asciidoc, asciidoctor, cmake, pkg-config,
fftw, fftwFloat, gfortran, hamlib_4, libtool, libusb1, qtbase,
2021-04-25 23:41:30 +00:00
qtmultimedia, qtserialport, qttools, boost, texinfo, wrapQtAppsHook }:
2018-02-17 11:06:27 +00:00
stdenv.mkDerivation rec {
pname = "wsjtx";
2023-04-04 01:42:20 +00:00
version = "2.6.1";
2018-02-17 11:06:27 +00:00
2023-11-08 23:24:10 +00:00
src = fetchgit {
url = "http://git.code.sf.net/p/wsjt/wsjtx";
rev = "wsjtx-${version}";
hash = "sha256-fELx3B9JqCCL5vaIHab3of5ah9qdu5lemqjUnvY5DdM=";
2018-02-17 11:06:27 +00:00
};
nativeBuildInputs = [
2023-11-08 23:24:10 +00:00
asciidoc asciidoctor cmake gfortran libtool
pkg-config qttools texinfo wrapQtAppsHook
2018-02-17 11:06:27 +00:00
];
2023-11-08 23:24:10 +00:00
buildInputs = [ fftw fftwFloat hamlib_4 libusb1 qtbase qtmultimedia qtserialport boost ];
meta = with lib; {
2018-02-17 11:06:27 +00:00
description = "Weak-signal digital communication modes for amateur radio";
longDescription = ''
2019-08-10 23:54:55 +00: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 11:06:27 +00: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.
'';
homepage = "https://physics.princeton.edu/pulsar/k1jt/wsjtx.html";
2023-11-08 23:24:10 +00:00
license = with licenses; [ gpl3Plus ];
2018-02-17 11:06:27 +00:00
platforms = platforms.linux;
2023-11-08 23:24:22 +00:00
maintainers = with maintainers; [ lasandell numinit melling ];
2018-02-17 11:06:27 +00:00
};
}