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
40 lines
889 B
Nix
40 lines
889 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "btcd";
|
|
version = "0.24.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "btcsuite";
|
|
repo = "btcd";
|
|
rev = "v${version}";
|
|
hash = "sha256-83eiVYXpyiGgLmYxj3rFk4CHG7F9UQ3vk1ZHm64Cm4A=";
|
|
};
|
|
|
|
vendorHash = "sha256-ek+gaolwpwoEEWHKYpK2OxCpk/0vywF784J3CC0UCZ4=";
|
|
|
|
subPackages = [
|
|
"."
|
|
"cmd/*"
|
|
];
|
|
|
|
preCheck = ''
|
|
DIR="github.com/btcsuite/btcd/"
|
|
# TestCreateDefaultConfigFile requires the sample-btcd.conf in $DIR
|
|
mkdir -p $DIR
|
|
cp sample-btcd.conf $DIR
|
|
'';
|
|
|
|
meta = {
|
|
description = "Alternative full node bitcoin implementation written in Go (golang)";
|
|
homepage = "https://github.com/btcsuite/btcd";
|
|
changelog = "https://github.com/btcsuite/btcd/releases/tag/v${version}";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ _0xB10C ];
|
|
};
|
|
}
|