litecoin: vendored Litecoin Core 0.21.5.5 (MWEB)
This commit is contained in:
parent
8066567957
commit
17066b5842
4 changed files with 74 additions and 1 deletions
14
modules/litecoin.nix
Normal file
14
modules/litecoin.nix
Normal 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 ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue