popura: init at 0.4.6

Fixes #163221
This commit is contained in:
Colin Arnott 2022-11-27 03:49:55 +00:00
parent 77d2151505
commit fa3bdfc956
No known key found for this signature in database
GPG Key ID: 0447A663F7F3E236
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ 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 = "An alternative Yggdrasil network client";
homepage = "https://github.com/popura-network/popura";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ urandom ];
mainProgram = "yggdrasil";
};
}

View File

@ -29395,6 +29395,8 @@ with pkgs;
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
popura = callPackage ../tools/networking/popura {};
shepherd = nodePackages."@nerdwallet/shepherd";
skate = callPackage ../applications/misc/skate { };