nixpkgs/pkgs/servers/bird-lg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.2 KiB
Nix
Raw Normal View History

2022-05-09 00:34:56 +00:00
{ buildGoModule, fetchFromGitHub, lib, symlinkJoin }:
let
generic = { modRoot, vendorHash }:
2022-05-09 00:34:56 +00:00
buildGoModule rec {
pname = "bird-lg-${modRoot}";
version = "1.3.5";
2022-05-19 09:37:12 +00:00
src = fetchFromGitHub {
owner = "xddxdd";
repo = "bird-lg-go";
rev = "v${version}";
hash = "sha256-lWpTIuN+wCSDBHmpRIfVG8Z1Qx1s55MnJomQPjczB5k=";
2022-05-19 09:37:12 +00:00
};
2022-05-09 00:34:56 +00:00
doDist = false;
ldflags = [
"-s"
"-w"
];
inherit modRoot vendorHash;
2022-05-09 00:34:56 +00:00
meta = with lib; {
description = "Bird Looking Glass";
homepage = "https://github.com/xddxdd/bird-lg-go";
2023-04-14 12:41:09 +00:00
changelog = "https://github.com/xddxdd/bird-lg-go/releases/tag/v${version}";
2022-05-09 00:34:56 +00:00
license = licenses.gpl3Plus;
2023-06-19 15:35:30 +00:00
maintainers = with maintainers; [
tchekda
e1mo
];
2022-05-09 00:34:56 +00:00
};
};
bird-lg-frontend = generic {
modRoot = "frontend";
vendorHash = "sha256-+M9Mlqck2E/ETW+NXsKwIeWlmZAaBU07fgDhKUU9PAI=";
2022-05-09 00:34:56 +00:00
};
bird-lg-proxy = generic {
modRoot = "proxy";
vendorHash = "sha256-nBTLQUX68f98D0RTlyX0gnvhQ+bu8d3Vv67J/YoXJxs=";
2022-05-09 00:34:56 +00:00
};
in
2023-04-14 12:41:09 +00:00
symlinkJoin {
name = "bird-lg-${bird-lg-frontend.version}";
paths = [ bird-lg-frontend bird-lg-proxy ];
} // {
inherit (bird-lg-frontend) version meta;
}