litecoin: vendored Litecoin Core 0.21.5.5 (MWEB)

This commit is contained in:
Sergei Poljanski 2026-06-29 05:12:24 +03:00
commit 17066b5842
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
4 changed files with 74 additions and 1 deletions

14
modules/litecoin.nix Normal file
View file

@ -0,0 +1,14 @@
# Litecoin Core 0.21.5.5 (MWEB) — vendored build, revives the package dropped
# from nixpkgs. Builds against openssl_3 + boost181 (older Boost's autotools
# ax_boost macros are needed; Boost 1.89 fails the Boost::System link probe).
{ config, pkgs, lib, ... }:
let
litecoin = pkgs.libsForQt5.callPackage ./litecoin-pkg.nix {
openssl = pkgs.openssl_3;
boost = pkgs.boost181;
};
in
{
environment.systemPackages = [ litecoin ];
}