Merge pull request #238607 from e1mo/bird-lg-update

bird-lg: 1.3.0 -> 1.3.1, bird-lg: add e1mo as maintainer
This commit is contained in:
Weijia Wang 2023-06-20 02:00:16 +03:00 committed by GitHub
commit 4f516d9efa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,13 @@ let
generic = { modRoot, vendorSha256 }:
buildGoModule rec {
pname = "bird-lg-${modRoot}";
version = "1.3.0";
version = "1.3.1";
src = fetchFromGitHub {
owner = "xddxdd";
repo = "bird-lg-go";
rev = "v${version}";
hash = "sha256-VQJHrC9ag697QfCEre1KvwbotfMm8f1otJ6SPg5zRYM=";
hash = "sha256-ROMwgsKroxd9qkKX8ZoOuazBrnZytcTAPT9hR/v6a04=";
};
doDist = false;
@ -26,18 +26,21 @@ let
homepage = "https://github.com/xddxdd/bird-lg-go";
changelog = "https://github.com/xddxdd/bird-lg-go/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ tchekda ];
maintainers = with maintainers; [
tchekda
e1mo
];
};
};
bird-lg-frontend = generic {
modRoot = "frontend";
vendorSha256 = "sha256-4ajQp425SFciTi2DV3ITW4iQkq6kUJFK2BabTTb87Zo=";
vendorSha256 = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs=";
};
bird-lg-proxy = generic {
modRoot = "proxy";
vendorSha256 = "sha256-o8F3uNGpz1fZr15HCY2PC7xRx9NakmvYrVQKe42ElOA=";
vendorSha256 = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug=";
};
in
symlinkJoin {