Skip to content

Commit

Permalink
add wsjtz
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen D committed Dec 24, 2024
1 parent defcdc8 commit 426498a
Show file tree
Hide file tree
Showing 2 changed files with 35 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 @@ -20194,6 +20194,11 @@
githubId = 3958212;
name = "Tom Sorlie";
};
scd31 = {
name = "scd31";
github = "scd31";
githubId = 57571338;
};
schinmai-akamai = {
email = "[email protected]";
github = "tchinmai7";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/by-name/ws/wsjtz/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
wsjtx,
fetchzip,
lib,
}:

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

src = fetchzip {
url = "https://psychz.dl.sourceforge.net/project/wsjt-z/Source/${pname}-${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 = with lib; {
description = "WSJT-X fork, primarily focused on automation and enhanced functionality";
homepage = "https://sourceforge.net/projects/wsjt-z/";
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [
scd31
];
};
})

0 comments on commit 426498a

Please sign in to comment.