bird-lg: 1.3.0 -> 1.3.1

> Properly escape URL with % symbol (https://github.com/xddxdd/bird-lg-go/pull/81)

https://github.com/xddxdd/bird-lg-go/releases/tag/v1.3.1
This commit is contained in:
Moritz 'e1mo' Fromm 2023-06-19 17:34:14 +02:00
parent 605c86ad63
commit d5a697ad4d
No known key found for this signature in database
GPG Key ID: 1D5D79A439E787F1

View File

@ -3,13 +3,13 @@ let
generic = { modRoot, vendorSha256 }: generic = { modRoot, vendorSha256 }:
buildGoModule rec { buildGoModule rec {
pname = "bird-lg-${modRoot}"; pname = "bird-lg-${modRoot}";
version = "1.3.0"; version = "1.3.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xddxdd"; owner = "xddxdd";
repo = "bird-lg-go"; repo = "bird-lg-go";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-VQJHrC9ag697QfCEre1KvwbotfMm8f1otJ6SPg5zRYM="; hash = "sha256-ROMwgsKroxd9qkKX8ZoOuazBrnZytcTAPT9hR/v6a04=";
}; };
doDist = false; doDist = false;
@ -32,12 +32,12 @@ let
bird-lg-frontend = generic { bird-lg-frontend = generic {
modRoot = "frontend"; modRoot = "frontend";
vendorSha256 = "sha256-4ajQp425SFciTi2DV3ITW4iQkq6kUJFK2BabTTb87Zo="; vendorSha256 = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs=";
}; };
bird-lg-proxy = generic { bird-lg-proxy = generic {
modRoot = "proxy"; modRoot = "proxy";
vendorSha256 = "sha256-o8F3uNGpz1fZr15HCY2PC7xRx9NakmvYrVQKe42ElOA="; vendorSha256 = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug=";
}; };
in in
symlinkJoin { symlinkJoin {