Skip to content

Commit 0400660

Browse files
authored
wsjtz: init at 2.7.0-rc7-1.43 (NixOS#367971)
2 parents 1f6b33c + b3a9b07 commit 0400660

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20349,6 +20349,11 @@
2034920349
githubId = 3958212;
2035020350
name = "Tom Sorlie";
2035120351
};
20352+
scd31 = {
20353+
name = "scd31";
20354+
github = "scd31";
20355+
githubId = 57571338;
20356+
};
2035220357
schinmai-akamai = {
2035320358
email = "[email protected]";
2035420359
github = "tchinmai7";

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)