nixpkgs/pkgs/development/java-modules/m2install.nix

22 lines
535 B
Nix
Raw Normal View History

2016-10-30 16:41:20 +01:00
{ stdenv, fetchurl }:
2016-11-16 18:39:59 +01:00
{ version, artifactId, groupId, sha512, type ? "jar", suffix ? "" }:
2016-10-30 16:41:20 +01:00
let
2016-11-16 18:39:59 +01:00
name = "${artifactId}-${version}";
m2Path = "${builtins.replaceStrings ["."] ["/"] groupId}/${artifactId}/${version}";
2016-10-31 18:25:27 +01:00
m2File = "${name}${suffix}.${type}";
2019-08-13 23:52:01 +02:00
src = fetchurl {
2016-10-30 16:41:20 +01:00
inherit sha512;
url = "mirror://maven/${m2Path}/${m2File}";
};
2019-08-13 23:52:01 +02:00
in stdenv.mkDerivation {
2016-10-30 16:41:20 +01:00
inherit name m2Path m2File src;
installPhase = ''
mkdir -p $out/m2/$m2Path
cp $src $out/m2/$m2Path/$m2File
'';
phases = "installPhase";
}