From 3629ab97a9e28d35485ae66397275c739fb91baa Mon Sep 17 00:00:00 2001 From: Fritz Stracke Date: Fri, 5 Jun 2026 16:25:36 +0200 Subject: [PATCH 1/2] maintainers: add fstracke --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e7b2f6df34fe..1dc81b3e8585 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9417,6 +9417,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"; From 07feee855f1d8b87aa29796cf62b7be27b9269d0 Mon Sep 17 00:00:00 2001 From: Fritz Stracke Date: Fri, 5 Jun 2026 16:24:52 +0200 Subject: [PATCH 2/2] hamlib_4: 4.6.2 -> 4.7.1 Update hamlib_4 to latest version for additional rig support. This automatically propagates to packages using the hamlib library as a dependency, allowing the usage of new hardware in said programs. Additionally update repo source to github as org switched there as main repository. Release notes of v4.1.7: https://github.com/Hamlib/Hamlib/releases/tag/4.7.1 Full commit-log since v4.6.2: https://github.com/Hamlib/Hamlib/compare/4.6.2...4.7.1 Co-authored-by: Sandro --- pkgs/by-name/ha/hamlib_4/package.nix | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/ha/hamlib_4/package.nix b/pkgs/by-name/ha/hamlib_4/package.nix index 1eade7399d8e..002afe022247 100644 --- a/pkgs/by-name/ha/hamlib_4/package.nix +++ b/pkgs/by-name/ha/hamlib_4/package.nix @@ -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; }; })