tests: refactor to support flake setup

This commit is contained in:
Tobias Happ 2022-09-24 15:44:18 +02:00
parent 004faf1835
commit 5d9e3c3dd1
6 changed files with 68 additions and 28 deletions

View file

@ -51,7 +51,15 @@ let
bootstrapZip = callPackage ./bootstrap-zip.nix { };
prootTermux = callPackage ./cross-compiling/proot-termux.nix { };
tallocStatic = callPackage ./cross-compiling/talloc-static.nix { };
prootTermuxTest = callPackage ./proot-termux {
inherit (pkgs) stdenv;
static = false;
outputBinaryName = "proot";
};
};
in
customPkgs
{
inherit (modules) config;
inherit customPkgs;
}