sigil/tests/posix.nix
Emery Hemingway a50b0a7d0e Remove Noux test, remove prebuilt depo packages
The stdenv is not building against the Noux libc, so remove it.
2020-05-08 09:32:23 +05:30

13 lines
345 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 [ "vfs" "libc" "posix" ]
++ (with legacyPackages; [ coreutils hello ]);
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
}