craftos-pc: fix tests

The tests attempt to import 'grep' with the intention of using
'gnugrep'. This commit resolves that issue.

Tomo 4851ef97 4953913b

+4 -4
+2 -2
pkgs/applications/emulators/craftos-pc/test-eval-hello-world/default.nix
··· 1 { stdenv 2 , craftos-pc 3 - , grep 4 }: 5 6 stdenv.mkDerivation { 7 name = "craftos-pc-test-eval-hello-world"; 8 meta.timeout = 60; 9 - nativeBuildInputs = [ craftos-pc grep ]; 10 buildCommand = '' 11 export HOME=$(pwd) 12 mkdir $HOME/.local $HOME/.config
··· 1 { stdenv 2 , craftos-pc 3 + , gnugrep 4 }: 5 6 stdenv.mkDerivation { 7 name = "craftos-pc-test-eval-hello-world"; 8 meta.timeout = 60; 9 + nativeBuildInputs = [ craftos-pc gnugrep ]; 10 buildCommand = '' 11 export HOME=$(pwd) 12 mkdir $HOME/.local $HOME/.config
+2 -2
pkgs/applications/emulators/craftos-pc/test-eval-periphemu/default.nix
··· 1 { stdenv 2 , craftos-pc 3 - , grep 4 }: 5 stdenv.mkDerivation { 6 name = "craftos-pc-test-eval-periphemu"; 7 meta.timeout = 60; 8 - nativeBuildInputs = [ craftos-pc grep ]; 9 buildCommand = '' 10 export HOME=$(pwd) 11 mkdir $HOME/.local $HOME/.config
··· 1 { stdenv 2 , craftos-pc 3 + , gnugrep 4 }: 5 stdenv.mkDerivation { 6 name = "craftos-pc-test-eval-periphemu"; 7 meta.timeout = 60; 8 + nativeBuildInputs = [ craftos-pc gnugrep ]; 9 buildCommand = '' 10 export HOME=$(pwd) 11 mkdir $HOME/.local $HOME/.config