forked from mirrors/nixpkgs
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
|
{ buildGoModule, fetchFromGitHub, lib, symlinkJoin }:
|
||
|
let
|
||
|
generic = { modRoot, vendorSha256 }:
|
||
|
buildGoModule rec {
|
||
|
pname = "bird-lg-${modRoot}";
|
||
|
version = "2022-05-08";
|
||
|
|
||
|
doDist = false;
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
];
|
||
|
|
||
|
inherit modRoot;
|
||
|
inherit vendorSha256;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "xddxdd";
|
||
|
repo = "bird-lg-go";
|
||
|
rev = "348295b9aa954a92df2cf6b1179846a9486dafc0";
|
||
|
sha256 = "sha256-2t8ZP9Uc0sJlqWiJMq3MVoARfMKsuTXJkuOid0oWgyY=";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Bird Looking Glass";
|
||
|
homepage = "https://github.com/xddxdd/bird-lg-go";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ tchekda ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
bird-lg-frontend = generic {
|
||
|
modRoot = "frontend";
|
||
|
vendorSha256 = "sha256-WKuVGiSV5LZrJ8/672TRN6tZNQxdCktHV6nx0ZxCP4A=";
|
||
|
};
|
||
|
|
||
|
bird-lg-proxy = generic {
|
||
|
modRoot = "proxy";
|
||
|
vendorSha256 = "sha256-7LZeCY4xSxREsQ+Dc2XSpu2ZI8CLE0mz0yoThP7/OO4=";
|
||
|
};
|
||
|
in
|
||
|
symlinkJoin { name = "bird-lg"; paths = [ bird-lg-frontend bird-lg-proxy ]; }
|