1c0233c0a8
- Make more economic use of the free CI resources by removing redundant build tasks: - Build unstable pkgs in a single separate task ("pkgs_unstable"). - All stable pkgs are implicitly built by the modules tests. - The build script (ci/build.sh) can now be executed locally for easier debugging. - Use an explicit 'cachix push' command instead of helper/wait-for-network-idle.rb. This is simpler and more reliable.
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
let self = {
|
|
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 { };
|
|
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
|
|
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3Packages; };
|
|
generate-secrets = pkgs.callPackage ./generate-secrets { };
|
|
nixops19_09 = pkgs.callPackage ./nixops { };
|
|
netns-exec = pkgs.callPackage ./netns-exec { };
|
|
lightning-loop = pkgs.callPackage ./lightning-loop { };
|
|
extra-container = pkgs.callPackage ./extra-container { };
|
|
clightning-plugins = import ./clightning-plugins pkgs self.nbPython3Packages;
|
|
|
|
nbPython3Packages = (pkgs.python3.override {
|
|
packageOverrides = pySelf: super: import ./python-packages self pySelf;
|
|
}).pkgs;
|
|
|
|
pinned = import ./pinned.nix;
|
|
|
|
lib = import ./lib.nix { inherit (pkgs) lib; };
|
|
|
|
modulesPkgs = self // self.pinned;
|
|
}; in self
|