mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
13 lines
247 B
Nix
13 lines
247 B
Nix
![]() |
{ runCommand, spidermonkey }:
|
||
|
|
||
|
runCommand "spidermonkey-test-run"
|
||
|
{
|
||
|
nativeBuildInputs = [
|
||
|
spidermonkey
|
||
|
];
|
||
|
}
|
||
|
''
|
||
|
diff -U3 --color=auto <(js <(echo "console.log('Hello, world\!')")) <(echo 'Hello, world!')
|
||
|
touch $out
|
||
|
''
|