From 4851ef974d6f159a3009db8310af9fec48717814 Mon Sep 17 00:00:00 2001 From: Tomo <68489118+Tomodachi94@users.noreply.github.com> Date: Sat, 22 Jul 2023 19:30:45 -0700 Subject: craftos-pc: fix tests The tests attempt to import 'grep' with the intention of using 'gnugrep'. This commit resolves that issue. --- .../emulators/craftos-pc/test-eval-hello-world/default.nix | 4 ++-- .../applications/emulators/craftos-pc/test-eval-periphemu/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/applications/emulators/craftos-pc') 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 -- cgit 1.4.1