at master 228 B view raw
1{ 2 runCommand, 3 callPackage, 4 jdk, 5 jre_minimal, 6}: 7 8let 9 hello = callPackage ./hello.nix { 10 jdk = jdk; 11 jre = jre_minimal; 12 }; 13in 14runCommand "test" { } '' 15 ${hello}/bin/hello | grep "Hello, world!" 16 touch $out 17''