Skip to content

Commit

Permalink
wsjtz: init at 2.7.0-rc7-1.43 (#367971)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored Jan 7, 2025
2 parents 1f6b33c + b3a9b07 commit 0400660
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20349,6 +20349,11 @@
githubId = 3958212;
name = "Tom Sorlie";
};
scd31 = {
name = "scd31";
github = "scd31";
githubId = 57571338;
};
schinmai-akamai = {
email = "[email protected]";
github = "tchinmai7";
Expand Down
31 changes: 31 additions & 0 deletions pkgs/by-name/ws/wsjtz/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
wsjtx,
fetchzip,
lib,
}:

wsjtx.overrideAttrs (old: rec {
pname = "wsjtz";
version = "2.7.0-rc7-1.43";

src = fetchzip {
url = "mirror://sourceforge/wsjt-z/Source/wsjtz-${version}.zip";
hash = "sha256-m+P83S5P9v3NPtifc+XjZm/mAOs+NT9fTWXisxuWtZo=";
};

postFixup = ''
mv $out/bin/wsjtx $out/bin/wsjtz
mv $out/bin/wsjtx_app_version $out/bin/wsjtz_app_version
'';

meta = {
description = "WSJT-X fork, primarily focused on automation and enhanced functionality";
homepage = "https://sourceforge.net/projects/wsjt-z/";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
scd31
];
mainProgram = "wsjtz";
};
})

0 comments on commit 0400660

Please sign in to comment.