Merge pull request #291934 from e1mo/bird-lg-1-3-5
bird-lg: 1.3.1 -> 1.3.5
This commit is contained in:
commit
dc9a74e61e
2 changed files with 6 additions and 6 deletions
|
@ -194,8 +194,8 @@ in
|
||||||
allowedIPs = mkOption {
|
allowedIPs = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ ];
|
default = [ ];
|
||||||
example = [ "192.168.25.52" "192.168.25.53" ];
|
example = [ "192.168.25.52" "192.168.25.53" "192.168.0.0/24" ];
|
||||||
description = lib.mdDoc "List of IPs to allow (default all allowed).";
|
description = lib.mdDoc "List of IPs or networks to allow (default all allowed).";
|
||||||
};
|
};
|
||||||
|
|
||||||
birdSocket = mkOption {
|
birdSocket = mkOption {
|
||||||
|
|
|
@ -3,13 +3,13 @@ let
|
||||||
generic = { modRoot, vendorHash }:
|
generic = { modRoot, vendorHash }:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "bird-lg-${modRoot}";
|
pname = "bird-lg-${modRoot}";
|
||||||
version = "1.3.1";
|
version = "1.3.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "xddxdd";
|
owner = "xddxdd";
|
||||||
repo = "bird-lg-go";
|
repo = "bird-lg-go";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-ROMwgsKroxd9qkKX8ZoOuazBrnZytcTAPT9hR/v6a04=";
|
hash = "sha256-lWpTIuN+wCSDBHmpRIfVG8Z1Qx1s55MnJomQPjczB5k=";
|
||||||
};
|
};
|
||||||
|
|
||||||
doDist = false;
|
doDist = false;
|
||||||
|
@ -35,12 +35,12 @@ let
|
||||||
|
|
||||||
bird-lg-frontend = generic {
|
bird-lg-frontend = generic {
|
||||||
modRoot = "frontend";
|
modRoot = "frontend";
|
||||||
vendorHash = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs=";
|
vendorHash = "sha256-+M9Mlqck2E/ETW+NXsKwIeWlmZAaBU07fgDhKUU9PAI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
bird-lg-proxy = generic {
|
bird-lg-proxy = generic {
|
||||||
modRoot = "proxy";
|
modRoot = "proxy";
|
||||||
vendorHash = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug=";
|
vendorHash = "sha256-nBTLQUX68f98D0RTlyX0gnvhQ+bu8d3Vv67J/YoXJxs=";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
|
|
Loading…
Reference in a new issue