Merge pull request #132742 from raboof/jre-minimal-remove-unnecessary-file

jre-minimal: remove unnecessary test file
This commit is contained in:
Sandro 2021-08-05 12:17:44 +02:00 committed by GitHub
commit c9c2426e2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +0,0 @@
{ runCommand
, callPackage
, jdk
, jre_minimal
}:
let
hello = callPackage tests/hello.nix {
jdk = jdk;
jre = jre_minimal;
};
in
runCommand "test" {} ''
${hello}/bin/hello | grep "Hello, world!"
touch $out
''