about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/jasmin/test-assemble-hello-world/default.nix
blob: 1840edffa779f483e536b8c71044a8bfedbbd62f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, jasmin, jre }:

stdenv.mkDerivation {
  name = "jasmin-test-assemble-hello-world";
  meta.timeout = 60;
  buildCommand = ''
    ${jasmin}/bin/jasmin ${./HelloWorld.j}
    ${jre}/bin/java HelloWorld | grep "Hello World"
    touch $out
  '';
}