nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1plugins {
2 id('application')
3}
4
5String getPropOrDie(String prop, String message) {
6 def ret = System.getProperty(prop)
7 if (!ret) {
8 throw new RuntimeException(message)
9 }
10 return ret
11}
12
13application {
14 mainClass = getPropOrDie('nix.test.mainClass', 'No main class defined, perhaps GRADLE_OPTS broke?')
15}