git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
803 B
Nix
33 lines
803 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "popura";
|
|
version = "0.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "${pname}-network";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-iCu6/vD4vgn7aGdwK+OB8ib/QwUwoFuxDUs7vqbTZQc=";
|
|
};
|
|
|
|
vendorHash = "sha256-9lQC35yt1S2uch3qgwNfa/1FHy+Qi1D5Jo7DWNMgU9w=";
|
|
|
|
ldflags = let pkgSrc = "github.com/yggdrasil-network/yggdrasil-go/src/version"; in [
|
|
"-s"
|
|
"-w"
|
|
"-X=${pkgSrc}.buildName=yggdrasil"
|
|
"-X=${pkgSrc}.buildVersion=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Alternative Yggdrasil network client";
|
|
homepage = "https://github.com/popura-network/popura";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = with maintainers; [ urandom ];
|
|
mainProgram = "yggdrasil";
|
|
};
|
|
}
|