nixpkgs/pkgs/applications/blockchains/lndhub-go/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
680 B
Nix
Raw Normal View History

2022-06-04 19:48:46 +02:00
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, fetchpatch
}:
buildGoModule rec {
pname = "lndhub-go";
2023-05-03 19:42:58 +02:00
version = "0.14.0";
2022-06-04 19:48:46 +02:00
src = fetchFromGitHub {
owner = "getAlby";
repo = "lndhub.go";
rev = "${version}";
2023-05-03 19:42:58 +02:00
sha256 = "sha256-m+Sc/rsYIbvd1oOqG4OT+wPtSxlgFq8m03n28eZIWJU=";
2022-06-04 19:48:46 +02:00
};
2023-05-03 19:42:58 +02:00
vendorHash = "sha256-a4yVuEfhLNM8IEYnafWf///SNLqQL5XZfGgJ5AZLx3c=";
2022-06-04 19:48:46 +02: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;
};
}