norouter: unbreak, pin go

This commit is contained in:
Kirill Radzikhovskyy 2023-11-19 10:00:31 +11:00
parent 8314afe172
commit 9a5c5f6b9d
2 changed files with 5 additions and 3 deletions

View File

@ -31,7 +31,5 @@ buildGoModule rec {
homepage = "https://github.com/norouter/norouter";
license = licenses.asl20;
maintainers = with maintainers; [ blaggacao ];
# out is empty
broken = true;
};
}

View File

@ -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 { };