2
0
Fork 0
genodepkgs/tests/posix.nix

13 lines
339 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ testEnv, pkgs, legacyPackages, ... }:
with pkgs;
testEnv.mkTest rec {
name = "posix";
testConfig = ./posix.dhall;
testInputs = map pkgs.genodeSources.depot [ "libc" "posix" ]
++ (with legacyPackages; [ coreutils hello ]);
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
}