Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

78 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchgit,
asciidoc,
asciidoctor,
cmake,
pkg-config,
fftw,
fftwFloat,
gfortran,
hamlib_4,
libtool,
libusb1,
qtbase,
qtmultimedia,
qtserialport,
qttools,
boost,
texinfo,
wrapQtAppsHook,
}:
stdenv.mkDerivation rec {
pname = "wsjtx";
version = "2.7.0";
src = fetchgit {
url = "http://git.code.sf.net/p/wsjt/wsjtx";
rev = "wsjtx-${version}";
hash = "sha256-AAPZTJUhz3x/28B9rk2uwFs1bkcEvaj+hOzAjpsFALQ=";
};
nativeBuildInputs = [
asciidoc
asciidoctor
cmake
gfortran
hamlib_4 # rigctl
libtool
pkg-config
qttools
texinfo
wrapQtAppsHook
];
buildInputs = [
fftw
fftwFloat
hamlib_4
libusb1
qtbase
qtmultimedia
qtserialport
boost
];
strictDeps = true;
meta = with lib; {
description = "Weak-signal digital communication modes for amateur radio";
longDescription = ''
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
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://wsjt.sourceforge.io";
license = with licenses; [ gpl3Plus ];
platforms = platforms.linux;
maintainers = with maintainers; [
lasandell
numinit
melling
];
};
}