Finish maven-hello / framework

This commit is contained in:
Tim Steinbach
2016-10-31 13:10:26 -04:00
parent f23c44516c
commit 8500c24911
44 changed files with 789 additions and 184 deletions

View File

@@ -0,0 +1,14 @@
{ fetchMaven }:
rec {
commonsLang3_3_1 = map (obj: fetchMaven {
version = "3.1";
baseName = "commons-lang3";
package = "/org/apache/commons";
sha512 = obj.sha512;
type = obj.type;
}) [
{ type = "pom"; sha512 = "0msypmqn5q4sxks97zbvi85rq2zclkyz8j09riqw7c95n96nyv7x3pysi83vdgc53d0lhl4apkp7warl52xq1qzdyjxipjdlhqmhdcw"; }
{ type = "jar"; sha512 = "3lw2naanwxjqrwgbg5ij6abzlkch0l6bcx44sl4a59m2r5fi2rvmc07pqai2l9kqwql05fyx9h1md5jjh2wzia15rqnvwssprykjwvi"; }
];
}