Complete hello world with test

This commit is contained in:
Tim Steinbach
2016-11-15 14:18:19 -05:00
parent 0e10bfa246
commit 63a46e0914
29 changed files with 451 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
{ fetchMaven }:
rec {
hamcrestAll_1_3 = map (obj: fetchMaven {
version = "1.3";
baseName = "hamcrest-all";
package = "/org/hamcrest";
sha512 = obj.sha512;
type = obj.type;
}) [
{ type = "jar"; sha512 = "3pmh19hhwr2vcvj3wqx0m8gipilny4ap9gax1xpks4k5pwykh74w0x9iwpns7cl8r7kqd6rbq4khhc0shcmfh6gydr8ax201wc7lvb8"; }
{ type = "pom"; sha512 = "1w0byl3qy1gq2d8r66fzpffalc7pqm82iz5k3bqcxhclb60ifadmsxi1icqdhfpa29gvr5p1j5723zqpr11dk9w3p16njxc0arqxp2h"; }
];
}