From 9a5c5f6b9dd6eebad76f1652197a24a7c2eba1c6 Mon Sep 17 00:00:00 2001 From: Kirill Radzikhovskyy Date: Sun, 19 Nov 2023 10:00:31 +1100 Subject: norouter: unbreak, pin go --- pkgs/tools/networking/norouter/default.nix | 2 -- pkgs/top-level/all-packages.nix | 6 +++++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/norouter/default.nix b/pkgs/tools/networking/norouter/default.nix index c3fdd57a592..e76cc4544e3 100644 --- a/pkgs/tools/networking/norouter/default.nix +++ b/pkgs/tools/networking/norouter/default.nix @@ -31,7 +31,5 @@ buildGoModule rec { homepage = "https://github.com/norouter/norouter"; license = licenses.asl20; maintainers = with maintainers; [ blaggacao ]; - # out is empty - broken = true; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd84e39bbe2..3063ee661e0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -33926,7 +33926,11 @@ with pkgs; normalize = callPackage ../applications/audio/normalize { }; - norouter = callPackage ../tools/networking/norouter { }; + norouter = callPackage ../tools/networking/norouter { + # doesn't build with go 1.21 + # https://github.com/norouter/norouter/issues/165 + buildGoModule = buildGo120Module; + }; nqptp = callPackage ../tools/networking/nqptp { }; -- cgit 1.4.1