4318d0972d
They don't build with the nixpkgs-unstable update in the next commit and they're deprecated anyway.
13 lines
258 B
Nix
13 lines
258 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
nbPkgs = import ../pkgs { inherit pkgs; };
|
|
ciPkgs = with nbPkgs; [
|
|
electrs
|
|
elementsd
|
|
hwi
|
|
joinmarket
|
|
lightning-loop
|
|
];
|
|
in
|
|
pkgs.writeText "ci-pkgs" (pkgs.lib.concatMapStringsSep "\n" toString ciPkgs)
|