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
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
llvmPackages,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "ldk-node";
|
|
version = "0-unstable-2025-09-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getAlby";
|
|
repo = "ldk-node";
|
|
rev = "75825474e5a551bb5ae5d1cf62cc434a26c30259";
|
|
hash = "sha256-8LhR2Ep7y+zXTKKwVdqmAqedq1FoTfdL3GyhCruHnz8=";
|
|
};
|
|
|
|
buildFeatures = [ "uniffi" ];
|
|
|
|
cargoHash = "sha256-VLQohnbuEdnu2E+BXe2mDKFUnDVlSY09rIIvHMIQ+Hg=";
|
|
|
|
# Skip tests because they download bitcoin-core and electrs zip files, and then fail
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
llvmPackages.clang
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
# Add CFLAGS to suppress the stringop-overflow error during aws-lc-sys compilation.
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=stringop-overflow";
|
|
|
|
meta = {
|
|
description = "Embeds the LDK node implementation compiled as shared library objects";
|
|
homepage = "https://github.com/getAlby/ldk-node";
|
|
changelog = "https://github.com/getAlby/ldk-node/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ bleetube ];
|
|
};
|
|
})
|