nix-bitcoin/pkgs/default.nix

49 lines
1.7 KiB
Nix
Raw Normal View History

let
nixpkgsPinned = import ./nixpkgs-pinned.nix;
in
# Set default values for use without flakes
{ pkgs ? import <nixpkgs> { config = {}; overlays = []; }
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable {
inherit (pkgs.stdenv) system;
config = {};
overlays = [];
}
}:
let self = {
clightning-rest = pkgs.callPackage ./clightning-rest { inherit (self) fetchNodeModules; };
2020-12-21 02:50:50 -08:00
clboss = pkgs.callPackage ./clboss { };
2021-12-20 06:16:38 -08:00
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3PackagesJoinmarket; };
2022-03-29 12:48:56 -07:00
lndinit = pkgs.callPackage ./lndinit { };
2021-12-20 06:16:38 -08:00
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
rtl = pkgs.callPackage ./rtl { inherit (self) fetchNodeModules; };
# The secp256k1 version used by joinmarket
secp256k1 = pkgs.callPackage ./secp256k1 { };
2021-12-20 06:16:38 -08:00
spark-wallet = pkgs.callPackage ./spark-wallet { };
2022-08-26 21:14:52 -07:00
trustedcoin = pkgs.callPackage ./trustedcoin { };
2023-05-07 11:30:36 -07:00
# TODO-EXTERNAL:
# Remove this when https://github.com/lightningnetwork/lnd/pull/7672
# has been resolved
lnd = pkgsUnstable.callPackage ./lnd { };
pyPkgs = import ./python-packages self pkgs.python3;
inherit (self.pyPkgs)
nbPython3Packages
nbPython3PackagesJoinmarket;
2022-08-21 05:41:36 -07:00
fetchNodeModules = pkgs.callPackage ./build-support/fetch-node-modules.nix { };
2021-12-20 06:16:38 -08:00
# Internal pkgs
netns-exec = pkgs.callPackage ./netns-exec { };
krops = import ./krops { inherit pkgs; };
2021-12-20 06:16:38 -08:00
# Deprecated pkgs
generate-secrets = import ./generate-secrets-deprecated.nix;
nixops19_09 = pkgs.callPackage ./nixops { };
pinned = import ./pinned.nix pkgs pkgsUnstable;
modulesPkgs = self // self.pinned;
}; in self