Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
867 B
Nix
36 lines
867 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "balanceofsatoshis";
|
|
version = "19.4.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexbosworth";
|
|
repo = "balanceofsatoshis";
|
|
tag = "v${version}";
|
|
hash = "sha256-lXwE7/7ZWO6GD4SY0BPh/QXNpxkCYJS00Gjna0DkOE0=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-WKpbYzNd0srD8yVB7Xa4v4qF9qHBiHHtKrYitnqEPTM=";
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
dontNpmBuild = true;
|
|
|
|
npmFlags = [ "--ignore-scripts" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/alexbosworth/balanceofsatoshis/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Tool for working with the balance of your satoshis on LND";
|
|
homepage = "https://github.com/alexbosworth/balanceofsatoshis";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "bos";
|
|
maintainers = with lib.maintainers; [ mariaa144 ];
|
|
};
|
|
}
|