depot/third_party/nixpkgs/pkgs/by-name/he/hello/test.nix

10 lines
179 B
Nix

{ runCommand, hello }:
runCommand "hello-test-run"
{
nativeBuildInputs = [ hello ];
}
''
diff -U3 --color=auto <(hello) <(echo 'Hello, world!')
touch $out
''