reticulum-go: 0.9.5 -> 0.9.6 (#534279)

This commit is contained in:
Pol Dellaiera
2026-06-22 20:58:08 +00:00
committed by GitHub
+9 -2
View File
@@ -7,7 +7,7 @@
buildGoModule (finalAttrs: {
pname = "reticulum-go";
version = "0.9.5";
version = "0.9.6";
strictDeps = true;
__structuredAttrs = true;
@@ -15,9 +15,15 @@ buildGoModule (finalAttrs: {
owner = "Quad4-Software";
repo = "Reticulum-Go";
tag = "v${finalAttrs.version}";
hash = "sha256-LszknSPyZRE/uGy5jSmKAmi+oBargjN+AgbT8QJ3hug=";
hash = "sha256-Rji6MJQAN48zKsLHQS8ukbi9pWjHPEbezXJu/700HZs=";
};
# TODO: Remove this when https://github.com/NixOS/nixpkgs/pull/527289 has landed in `master`
postPatch = ''
substituteInPlace go.mod \
--replace-fail "1.26.4" "1.26.3"
'';
vendorHash = null;
subPackages = [ "cmd/reticulum-go" ];
@@ -38,5 +44,6 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/Quad4-Software/Reticulum-Go";
license = lib.licenses.asl20;
mainProgram = "reticulum-go";
maintainers = with lib.maintainers; [ drupol ];
};
})