2
0
Fork 0
genodepkgs/tests/noux.nix

16 lines
359 B
Nix
Raw Normal View History

2020-01-25 18:14:18 +01:00
# SPDX-License-Identifier: CC0-1.0
{ testEnv, pkgs, depot, ... }:
with pkgs;
testEnv.mkTest rec {
name = "noux";
testConfig = ./noux.dhall;
testInputs = (with pkgs; [ noux ]) ++ (with depot; [
2020-01-25 18:14:18 +01:00
bash-minimal
ncurses
]);
2020-01-25 18:14:18 +01:00
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testScript = "run_genode_until {SOTEST SUCCESS} 40";
2020-01-25 18:14:18 +01:00
}