mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
1,000 B
Nix
26 lines
1,000 B
Nix
{ fetchMaven }:
|
|
|
|
{
|
|
mavenSurefireBooter_2_12_4 = map (obj: fetchMaven {
|
|
version = "2.12.4";
|
|
artifactId = "surefire-booter";
|
|
groupId = "org.apache.maven.surefire";
|
|
sha512 = obj.sha512;
|
|
type = obj.type;
|
|
}) [
|
|
{ type = "jar"; sha512 = "08l0r0s1jhjdgljh26m4i612kf6wqs6g8lwx9n0cccjjzlpn3sxg7dryagwp2gz2g9y5kpdmbpsxmp5imbdak3qrwa56wxrmik16jh8"; }
|
|
{ type = "pom"; sha512 = "3rj97rbbdm0m0f1cpbvw7mc9hc5jmfkqbg1w1ggr640bd8fzrgmxrcynxf440mf0wg4xy55v27g6v5c3z20zlw1h4qi500x6wfm0l5s"; }
|
|
];
|
|
|
|
mavenSurefireBooter_2_17 = map (obj: fetchMaven {
|
|
version = "2.17";
|
|
artifactId = "surefire-booter";
|
|
groupId = "org.apache.maven.surefire";
|
|
sha512 = obj.sha512;
|
|
type = obj.type;
|
|
}) [
|
|
{ type = "jar"; sha512 = "1x8nldyxzx56an3zskbq40i3aq4sp21jlnybmrd6pjzf4c3pgrd8qsxkvz23pxyfzvskpkgmibfpshng9qk18c5dm2h4n5sljp1ayni"; }
|
|
{ type = "pom"; sha512 = "0w2ql9a70ncdvzicv0947q8jil4ksha42xxswqk1aas1bsg7qwpg8v4pih887y4zirnl861qaw6d1v09l1s3jqq7hxid0w3jxnlcasb"; }
|
|
];
|
|
}
|