5d01ea7101
currently, nodeinfo has presets/secure-node.nix as a strict dependency as it requires onion-chef and the 'operatorName' option. and nix-bitcoin-webindex.nix has nodeinfo as a dependecy. so don't add nodeinfo and webindex to modules.nix because they will fail on standalone use.
16 lines
619 B
Nix
16 lines
619 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
{
|
|
lightning-charge = pkgs.callPackage ./lightning-charge { };
|
|
nanopos = pkgs.callPackage ./nanopos { };
|
|
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
|
electrs = pkgs.callPackage ./electrs { };
|
|
elementsd = pkgs.callPackage ./elementsd { withGui = false; };
|
|
hwi = pkgs.callPackage ./hwi { };
|
|
pylightning = pkgs.python3Packages.callPackage ./pylightning { };
|
|
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
|
|
generate-secrets = pkgs.callPackage ./generate-secrets { };
|
|
nixops19_09 = pkgs.callPackage ./nixops { };
|
|
|
|
pinned = import ./pinned.nix;
|
|
}
|