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
26 lines
614 B
Nix
26 lines
614 B
Nix
{
|
|
wsjtx,
|
|
fetchgit,
|
|
qt5,
|
|
lib,
|
|
}:
|
|
wsjtx.overrideAttrs (old: {
|
|
pname = "jtdx";
|
|
version = "unstable-2022-03-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/jtdx-project/jtdx.git";
|
|
rev = "2a0e2bea8c66c9ca94d2ea8034cf83a68cfa40eb";
|
|
hash = "sha256-5KlFBlzG3hKFFGO37c+VN+FvZKSnTQXvSorB+Grns8w=";
|
|
};
|
|
buildInputs = old.buildInputs ++ [ qt5.qtwebsockets ];
|
|
meta = {
|
|
description = "wsjtx fork with some extra features";
|
|
maintainers = with lib.maintainers; [
|
|
matthewcroughan
|
|
sarcasticadmin
|
|
pkharvey
|
|
];
|
|
homepage = "https://github.com/jtdx-project/jtdx";
|
|
};
|
|
})
|