bird-lg: Pass version and meta
This commit is contained in:
parent
3dc05fbe40
commit
d4ade747dc
1 changed files with 7 additions and 1 deletions
|
@ -24,6 +24,7 @@ let
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Bird Looking Glass";
|
description = "Bird Looking Glass";
|
||||||
homepage = "https://github.com/xddxdd/bird-lg-go";
|
homepage = "https://github.com/xddxdd/bird-lg-go";
|
||||||
|
changelog = "https://github.com/xddxdd/bird-lg-go/releases/tag/v${version}";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ tchekda ];
|
maintainers = with maintainers; [ tchekda ];
|
||||||
};
|
};
|
||||||
|
@ -39,4 +40,9 @@ let
|
||||||
vendorSha256 = "sha256-QHLq4RuQaCMjefs7Vl7zSVgjLMDXvIZcM8d6/B5ECZc=";
|
vendorSha256 = "sha256-QHLq4RuQaCMjefs7Vl7zSVgjLMDXvIZcM8d6/B5ECZc=";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
symlinkJoin { name = "bird-lg"; paths = [ bird-lg-frontend bird-lg-proxy ]; }
|
symlinkJoin {
|
||||||
|
name = "bird-lg-${bird-lg-frontend.version}";
|
||||||
|
paths = [ bird-lg-frontend bird-lg-proxy ];
|
||||||
|
} // {
|
||||||
|
inherit (bird-lg-frontend) version meta;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue