a82f0f5f48
Included in 'basic' tests. Function 'doBuild' is needed by the following commit.
14 lines
336 B
Nix
14 lines
336 B
Nix
let
|
|
pinned = import ../pkgs/nixpkgs-pinned.nix;
|
|
pkgs = import pinned.nixpkgs-unstable {};
|
|
nbPkgs = import ../pkgs { inherit pkgs; };
|
|
pkgsUnstable = with nbPkgs; [
|
|
electrs
|
|
elementsd
|
|
hwi
|
|
joinmarket
|
|
lightning-loop
|
|
];
|
|
in
|
|
pkgs.writeText "pkgs-unstable" (pkgs.lib.concatMapStringsSep "\n" toString pkgsUnstable)
|