add test 'pkgsUnstable'

Included in 'basic' tests.
Function 'doBuild' is needed by the following commit.
This commit is contained in:
Erik Arvstedt
2020-12-11 13:27:05 +01:00
parent 95bc1237e2
commit a82f0f5f48
2 changed files with 31 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
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)