hamlib: update hamlib to version 4.7.1 (#528494)

This commit is contained in:
Ryan Hendrickson 2026-07-05 21:24:08 +00:00 committed by GitHub
commit 06da8ef4f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 6 deletions

View file

@ -9540,6 +9540,13 @@
githubId = 2881922;
name = "Francis St-Amour";
};
fstracke = {
email = "fritz.stracke@rwth-aachen.de";
github = "fstracke";
githubId = 31512703;
name = "Fritz Stracke";
keys = [ { fingerprint = "7A9D 6DB2 0C5A AA55 7838 EEE6 B8CA 2D9A D8F0 506F"; } ];
};
ftrvxmtrx = {
email = "ftrvxmtrx@gmail.com";
github = "ftrvxmtrx";

View file

@ -1,9 +1,10 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
perl,
swig,
autoreconfHook,
gd,
ncurses,
python311,
@ -23,11 +24,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "hamlib";
version = "4.6.2";
version = "4.7.1";
src = fetchurl {
url = "mirror://sourceforge/hamlib/hamlib-${finalAttrs.version}.tar.gz";
hash = "sha256-sqxz9E3RFh6V/e5slSdhRHV2R7+S1/2zae4v5B7Ueug=";
src = fetchFromGitHub {
owner = "Hamlib";
repo = "Hamlib";
tag = finalAttrs.version;
hash = "sha256-nI8gDACxlci2Q9V2W4D1DYDUL74JwlCs+qyyNkXOPu4=";
};
strictDeps = true;
@ -36,6 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
swig
pkg-config
libtool
autoreconfHook
]
++ lib.optionals pythonBindings [ python3 ]
++ lib.optionals tclBindings [ tcl ]
@ -78,7 +82,10 @@ stdenv.mkDerivation (finalAttrs: {
lgpl2Plus
];
homepage = "https://hamlib.sourceforge.net";
maintainers = with lib.maintainers; [ relrod ];
maintainers = with lib.maintainers; [
relrod
fstracke
];
platforms = with lib.platforms; unix;
};
})