craftos-pc: fix tests
The tests attempt to import 'grep' with the intention of using 'gnugrep'. This commit resolves that issue.
This commit is contained in:
parent
4953913b51
commit
4851ef974d
2 changed files with 4 additions and 4 deletions
pkgs/applications/emulators/craftos-pc
|
@ -1,12 +1,12 @@
|
|||
{ stdenv
|
||||
, craftos-pc
|
||||
, grep
|
||||
, gnugrep
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "craftos-pc-test-eval-hello-world";
|
||||
meta.timeout = 60;
|
||||
nativeBuildInputs = [ craftos-pc grep ];
|
||||
nativeBuildInputs = [ craftos-pc gnugrep ];
|
||||
buildCommand = ''
|
||||
export HOME=$(pwd)
|
||||
mkdir $HOME/.local $HOME/.config
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ stdenv
|
||||
, craftos-pc
|
||||
, grep
|
||||
, gnugrep
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
name = "craftos-pc-test-eval-periphemu";
|
||||
meta.timeout = 60;
|
||||
nativeBuildInputs = [ craftos-pc grep ];
|
||||
nativeBuildInputs = [ craftos-pc gnugrep ];
|
||||
buildCommand = ''
|
||||
export HOME=$(pwd)
|
||||
mkdir $HOME/.local $HOME/.config
|
||||
|
|
Loading…
Reference in a new issue