2021-04-02 02:10:24 +00:00
|
|
|
{ pkgs, lib }:
|
2021-04-18 00:30:55 +00:00
|
|
|
|
|
|
|
pkgs.runCommandNoCC "devos-lib-tests"
|
|
|
|
{
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.nix
|
|
|
|
(
|
2021-04-02 02:10:24 +00:00
|
|
|
let tests = import ./lib.nix { inherit pkgs lib; }; in
|
2021-04-18 00:30:55 +00:00
|
|
|
if tests == [ ] then null
|
|
|
|
else throw (builtins.toJSON tests)
|
|
|
|
)
|
|
|
|
];
|
|
|
|
} ''
|
|
|
|
datadir="${pkgs.nix}/share"
|
|
|
|
export TEST_ROOT=$(pwd)/test-tmp
|
|
|
|
export NIX_BUILD_HOOK=
|
|
|
|
export NIX_CONF_DIR=$TEST_ROOT/etc
|
|
|
|
export NIX_LOCALSTATE_DIR=$TEST_ROOT/var
|
|
|
|
export NIX_LOG_DIR=$TEST_ROOT/var/log/nix
|
|
|
|
export NIX_STATE_DIR=$TEST_ROOT/var/nix
|
|
|
|
export NIX_STORE_DIR=$TEST_ROOT/store
|
|
|
|
export PAGER=cat
|
|
|
|
cacheDir=$TEST_ROOT/binary-cache
|
|
|
|
nix-store --init
|
|
|
|
|
|
|
|
touch $out
|
|
|
|
''
|