2021-06-21 23:35:03 +03:00
|
|
|
{ system ? builtins.currentSystem
|
|
|
|
, inputs # flake style polyfill not possible, since this depends on digga's internals
|
|
|
|
}:
|
2021-06-20 10:08:00 +03:00
|
|
|
let
|
2021-06-20 05:42:51 +03:00
|
|
|
|
|
|
|
nixpkgs = inputs.nixpkgs;
|
2021-07-21 02:24:39 +03:00
|
|
|
digga = inputs.digga;
|
|
|
|
lib = nixpkgs.lib // digga.lib;
|
2021-06-20 10:08:00 +03:00
|
|
|
pkgs = import nixpkgs { inherit system; config = { }; overlays = [ ]; };
|
2021-06-20 05:42:51 +03:00
|
|
|
|
2021-06-20 10:08:00 +03:00
|
|
|
in
|
|
|
|
{
|
2021-06-20 05:42:51 +03:00
|
|
|
|
2021-05-13 02:10:18 +03:00
|
|
|
libTests = pkgs.runCommandNoCC "devos-lib-tests"
|
|
|
|
{
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.nix
|
|
|
|
(
|
2021-05-27 21:54:10 +03:00
|
|
|
let tests = import ./lib { inherit pkgs lib; }; in
|
2021-05-13 02:10:18 +03:00
|
|
|
if tests == [ ] then null
|
|
|
|
else throw (builtins.toJSON tests)
|
|
|
|
)
|
|
|
|
];
|
|
|
|
} ''
|
2021-06-15 20:06:20 +03:00
|
|
|
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
|
2021-05-04 04:20:12 +03:00
|
|
|
|
2021-06-15 20:06:20 +03:00
|
|
|
touch $out
|
|
|
|
'';
|
2021-05-13 02:10:18 +03:00
|
|
|
|
|
|
|
}
|