lndinit: init at 0.1.3-beta

This commit is contained in:
Erik Arvstedt 2022-03-29 21:48:56 +02:00
parent 05b8c632f4
commit e793a3470c
No known key found for this signature in database
GPG key ID: 33312B944DD97846
3 changed files with 51 additions and 0 deletions

24
pkgs/lndinit/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "lndinit";
version = "0.1.3-beta";
src = fetchFromGitHub {
owner = "lightninglabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-sO1DpbppCurxr9g9nUl9Vx82FJK1mTcUw3rY1Fm1wEU=";
};
vendorSha256 = "sha256-xdxxixSabcuGzwCctHrP/RV/Z8sCQDmk2PU4j1u8MX8=";
subPackages = [ "." ];
meta = with lib; {
description = "Wallet initializer utility for lnd";
homepage = "https://github.com/lightninglabs/lndinit";
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
};
}