3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/blockchains/lndhub-go/default.nix

31 lines
682 B
Nix
Raw Normal View History

2022-06-04 18:48:46 +01:00
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, fetchpatch
}:
buildGoModule rec {
pname = "lndhub-go";
2022-08-08 10:52:39 +01:00
version = "0.10.0";
2022-06-04 18:48:46 +01:00
src = fetchFromGitHub {
owner = "getAlby";
repo = "lndhub.go";
rev = "${version}";
2022-08-08 10:52:39 +01:00
sha256 = "sha256-f/CkmO0KHupmi4XZDWRbvesLnYIxT6DlThgX3S/kdJ8=";
2022-06-04 18:48:46 +01:00
};
2022-08-08 10:52:39 +01:00
vendorSha256 = "sha256-SWQudULFRMrKmxY6ZgH0NL8d6UPxowQnovhRx+209D4=";
2022-06-04 18:48:46 +01:00
doCheck = false; # tests require networking
meta = with lib; {
description = "Accounting wrapper for the Lightning Network";
homepage = "https://github.com/getAlby/lndhub.go";
license = licenses.gpl3;
maintainers = with maintainers; [ prusnak ];
platforms = platforms.unix;
};
}