jtdx: init at unstable-2022-03-01

This commit is contained in:
matthewcroughan 2024-04-27 15:34:16 +01:00 committed by Emery Hemingway
parent 20bbe15aea
commit 91e0db4740
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ wsjtx, fetchgit, qt5, lib }:
wsjtx.overrideAttrs (old: {
name = "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";
};
})