about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/lobster/test-can-run-hello-world.nix
blob: ceb0536b582cca4b265b4f5d7e3988acbdec808a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, lobster }:

stdenv.mkDerivation {
  name = "lobster-test-can-run-hello-world";
  meta.timeout = 10;
  buildCommand = ''
    ${lobster}/bin/lobster \
      ${lobster}/share/Lobster/samples/rosettacode/hello_world_test.lobster \
      | grep 'Goodbye, World!'
    touch $out
  '';
}