Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

bird-lg: Pass version and meta

authored by

Moritz 'e1mo' Fromm and committed by
Yureka
d4ade747 3dc05fbe

+7 -1
+7 -1
pkgs/servers/bird-lg/default.nix
··· 24 24 meta = with lib; { 25 25 description = "Bird Looking Glass"; 26 26 homepage = "https://github.com/xddxdd/bird-lg-go"; 27 + changelog = "https://github.com/xddxdd/bird-lg-go/releases/tag/v${version}"; 27 28 license = licenses.gpl3Plus; 28 29 maintainers = with maintainers; [ tchekda ]; 29 30 }; ··· 39 40 vendorSha256 = "sha256-QHLq4RuQaCMjefs7Vl7zSVgjLMDXvIZcM8d6/B5ECZc="; 40 41 }; 41 42 in 42 - symlinkJoin { name = "bird-lg"; paths = [ bird-lg-frontend bird-lg-proxy ]; } 43 + symlinkJoin { 44 + name = "bird-lg-${bird-lg-frontend.version}"; 45 + paths = [ bird-lg-frontend bird-lg-proxy ]; 46 + } // { 47 + inherit (bird-lg-frontend) version meta; 48 + }