about summary refs log tree commit diff
path: root/pkgs/applications/emulators/craftos-pc
diff options
context:
space:
mode:
authorTomo <68489118+Tomodachi94@users.noreply.github.com>2023-07-22 19:30:45 -0700
committerTomo <68489118+Tomodachi94@users.noreply.github.com>2023-07-22 19:34:01 -0700
commit4851ef974d6f159a3009db8310af9fec48717814 (patch)
treef3113c6a7aaa0619d46a7b3d96004288c46df77c /pkgs/applications/emulators/craftos-pc
parent4953913b51f138f71e8fea2c7480337ce08833b9 (diff)
craftos-pc: fix tests
The tests attempt to import 'grep' with the intention of using
'gnugrep'. This commit resolves that issue.
Diffstat (limited to 'pkgs/applications/emulators/craftos-pc')
-rw-r--r--pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix4
-rw-r--r--pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix b/pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix
index b2d887428a0e9..90b86a16fa723 100644
--- a/pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix
+++ b/pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix
@@ -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
diff --git a/pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix b/pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix
index ad5cf97401a00..af1cca9c27a75 100644
--- a/pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix
+++ b/pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix
@@ -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