Skip to content

Commit b3a9b07

Browse files
author
Stephen D
committed
wsjtz: init at 2.7.0-rc7-1.43
1 parent c978a5d commit b3a9b07

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

pkgs/by-name/ws/wsjtz/package.nix

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
wsjtx,
3+
fetchzip,
4+
lib,
5+
}:
6+
7+
wsjtx.overrideAttrs (old: rec {
8+
pname = "wsjtz";
9+
version = "2.7.0-rc7-1.43";
10+
11+
src = fetchzip {
12+
url = "mirror://sourceforge/wsjt-z/Source/wsjtz-${version}.zip";
13+
hash = "sha256-m+P83S5P9v3NPtifc+XjZm/mAOs+NT9fTWXisxuWtZo=";
14+
};
15+
16+
postFixup = ''
17+
mv $out/bin/wsjtx $out/bin/wsjtz
18+
mv $out/bin/wsjtx_app_version $out/bin/wsjtz_app_version
19+
'';
20+
21+
meta = {
22+
description = "WSJT-X fork, primarily focused on automation and enhanced functionality";
23+
homepage = "https://sourceforge.net/projects/wsjt-z/";
24+
license = lib.licenses.gpl3;
25+
platforms = lib.platforms.linux;
26+
maintainers = with lib.maintainers; [
27+
scd31
28+
];
29+
mainProgram = "wsjtz";
30+
};
31+
})

0 commit comments

Comments
 (0)