2019-01-14 08:45:50 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre_headless, gawk }:
|
2018-05-15 13:10:29 +01:00
|
|
|
|
2015-09-26 05:00:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nexus";
|
2020-04-01 15:51:27 +01:00
|
|
|
version = "3.22.0-02";
|
2015-09-26 05:00:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-27 02:37:07 +01:00
|
|
|
url = "https://sonatype-download.global.ssl.fastly.net/nexus/3/nexus-${version}-unix.tar.gz";
|
2020-04-01 15:51:27 +01:00
|
|
|
sha256 = "12433fgva03gsgi37xqgkdnbglgq4b66lmzk5cyxfg22szl4xvwz";
|
2015-09-26 05:00:22 +01:00
|
|
|
};
|
|
|
|
|
2019-10-28 20:33:16 +00:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
sourceRoot = "${pname}-${version}";
|
2015-09-26 05:00:22 +01:00
|
|
|
|
2017-09-01 17:19:27 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2015-09-26 05:00:22 +01:00
|
|
|
|
2018-05-15 13:10:29 +01:00
|
|
|
patches = [ ./nexus-bin.patch ./nexus-vm-opts.patch ];
|
2017-09-01 17:19:27 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace bin/nexus.vmoptions \
|
|
|
|
--replace etc/karaf $out/etc/karaf \
|
|
|
|
--replace =. =$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
cp -rfv * .install4j $out
|
|
|
|
rm -fv $out/bin/nexus.bat
|
|
|
|
|
|
|
|
wrapProgram $out/bin/nexus \
|
2019-01-14 08:45:50 +00:00
|
|
|
--set JAVA_HOME ${jre_headless} \
|
2017-09-01 17:19:27 +01:00
|
|
|
--set ALTERNATIVE_NAME "nexus" \
|
|
|
|
--prefix PATH "${stdenv.lib.makeBinPath [ gawk ]}"
|
2018-05-15 13:10:29 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-09-01 17:19:27 +01:00
|
|
|
'';
|
2015-09-26 05:00:22 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Repository manager for binary software components";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.sonatype.org/nexus";
|
2015-09-26 05:00:22 +01:00
|
|
|
license = licenses.epl10;
|
|
|
|
platforms = platforms.all;
|
2020-03-11 21:20:26 +00:00
|
|
|
maintainers = with maintainers; [ aespinosa ironpinguin zaninime ];
|
2015-09-26 05:00:22 +01:00
|
|
|
};
|
|
|
|
}
|