Merge pull request #268396 from kirillrdy/norouter

This commit is contained in:
Artturi 2023-11-19 02:59:14 +02:00 committed by GitHub
commit 37ecc26bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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