Merge pull request #291934 from e1mo/bird-lg-1-3-5

bird-lg: 1.3.1 -> 1.3.5
This commit is contained in:
Guillaume Girol 2024-03-03 15:50:42 +01:00 committed by GitHub
commit dc9a74e61e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -194,8 +194,8 @@ in
allowedIPs = mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "192.168.25.52" "192.168.25.53" ];
description = lib.mdDoc "List of IPs to allow (default all allowed).";
example = [ "192.168.25.52" "192.168.25.53" "192.168.0.0/24" ];
description = lib.mdDoc "List of IPs or networks to allow (default all allowed).";
};
birdSocket = mkOption {

View File

@ -3,13 +3,13 @@ let
generic = { modRoot, vendorHash }:
buildGoModule rec {
pname = "bird-lg-${modRoot}";
version = "1.3.1";
version = "1.3.5";
src = fetchFromGitHub {
owner = "xddxdd";
repo = "bird-lg-go";
rev = "v${version}";
hash = "sha256-ROMwgsKroxd9qkKX8ZoOuazBrnZytcTAPT9hR/v6a04=";
hash = "sha256-lWpTIuN+wCSDBHmpRIfVG8Z1Qx1s55MnJomQPjczB5k=";
};
doDist = false;
@ -35,12 +35,12 @@ let
bird-lg-frontend = generic {
modRoot = "frontend";
vendorHash = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs=";
vendorHash = "sha256-+M9Mlqck2E/ETW+NXsKwIeWlmZAaBU07fgDhKUU9PAI=";
};
bird-lg-proxy = generic {
modRoot = "proxy";
vendorHash = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug=";
vendorHash = "sha256-nBTLQUX68f98D0RTlyX0gnvhQ+bu8d3Vv67J/YoXJxs=";
};
in
symlinkJoin {