about summary refs log tree commit diff
path: root/pkgs/development/java-modules/xerces/impl.nix
blob: 7b04e21f50ee311e22ac85b6714d2904a96e5027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ fetchMaven }:

rec {
  xercesImpl_2_8_0 = map (obj: fetchMaven {
    version = "2.8.0";
    baseName = "xercesImpl";
    package = "/xerces";
    sha512 = obj.sha512;
    type = obj.type;
  }) [
    { type = "jar"; sha512 = "09nwhb52g4ak92l8d0aymasbgjxmk4s7vp7i55l38x21zq1plxxkdp2sdk110qyg5mw06y433v28fm867jybpca8zrx51w4g7wg0w2y"; }
    { type = "pom"; sha512 = "3lv2zqm25mmirazrpp53dicd3ficy32mdr3r7bc7xhmjky2r0051vzh5k0c01rwlb4kx0rinysxw9k20ml96ivw6ipwlrvpxjwgb74f"; }
  ];
}