265fc1911d
extra-container is now part of nixpkgs.
28 lines
1.0 KiB
Nix
28 lines
1.0 KiB
Nix
let
|
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
|
in
|
|
# Set default values for use without flakes
|
|
{ pkgs ? import <nixpkgs> { config = {}; overlays = []; }
|
|
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; }
|
|
}:
|
|
let self = {
|
|
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
|
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
|
|
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3Packages; };
|
|
generate-secrets = import ./generate-secrets-deprecated.nix;
|
|
nixops19_09 = pkgs.callPackage ./nixops { };
|
|
krops = import ./krops { };
|
|
netns-exec = pkgs.callPackage ./netns-exec { };
|
|
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
|
|
clboss = pkgs.callPackage ./clboss { };
|
|
secp256k1 = pkgs.callPackage ./secp256k1 { };
|
|
|
|
nbPython3Packages = (pkgs.python3.override {
|
|
packageOverrides = import ./python-packages self;
|
|
}).pkgs;
|
|
|
|
pinned = import ./pinned.nix pkgs pkgsUnstable;
|
|
|
|
modulesPkgs = self // self.pinned;
|
|
}; in self
|