Partial junit_4_12

This commit is contained in:
Tim Steinbach
2016-10-30 11:44:56 -04:00
parent d849c0e2e1
commit 1f2e19b67c
34 changed files with 1101 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ fetchMaven }:
rec {
# Ant build, just fetch the binary
hamcrestCore_1_3 = map (obj: fetchMaven {
version = "1.3";
baseName = "hamcrest-core";
package = "/org/hamcrest";
sha512 = obj.sha512;
type = obj.type;
}) [
{ type = "jar"; sha512 = "14vx453pk5shchdn3sz17s5im1cq1vav19rwnybafnsq2blfn3d0xz01cf9h1gnzclivhc4wgf7vvs23wcr7iiy4nksakxcb9rswdz2"; }
{ type = "pom"; sha512 = "3rn4bs9ixdnwg916qdkjjv9m17l0ym7zj6cxaf18304wlbshxcb1fpa11rnll9g76ap0f4z8r70z3snfj6kyf6sw9xf9xpq4n1796rg"; }
];
}