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

22 lines
501 B
Nix
Raw Normal View History

2016-10-30 15:41:20 +00:00
{ stdenv, fetchurl }:
2016-10-31 17:25:27 +00:00
{ version, baseName, package, sha512, type ? "jar", suffix ? "" }:
2016-10-30 15:41:20 +00:00
let
name = "${baseName}-${version}";
m2Path = "${package}/${baseName}/${version}";
2016-10-31 17:25:27 +00:00
m2File = "${name}${suffix}.${type}";
2016-10-30 15:41:20 +00:00
src = fetchurl rec {
inherit sha512;
url = "mirror://maven/${m2Path}/${m2File}";
};
in stdenv.mkDerivation rec {
inherit name m2Path m2File src;
installPhase = ''
mkdir -p $out/m2/$m2Path
cp $src $out/m2/$m2Path/$m2File
'';
phases = "installPhase";
}