2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre_headless, gawk }:
|
2018-05-15 12:10:29 +00:00
|
|
|
|
2015-09-26 04:00:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nexus";
|
2021-10-01 16:24:04 +00:00
|
|
|
version = "3.32.0-03";
|
2015-09-26 04:00:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-27 01:37:07 +00:00
|
|
|
url = "https://sonatype-download.global.ssl.fastly.net/nexus/3/nexus-${version}-unix.tar.gz";
|
2021-10-01 16:24:04 +00:00
|
|
|
sha256 = "17cgbpv1id4gbp3c42pqc3dxnh36cm1c77y7dysskyml4qfh5f7m";
|
2015-09-26 04:00:22 +00:00
|
|
|
};
|
|
|
|
|
2019-10-28 20:33:16 +00:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2019-08-15 12:41:18 +00:00
|
|
|
sourceRoot = "${pname}-${version}";
|
2015-09-26 04:00:22 +00:00
|
|
|
|
2017-09-01 16:19:27 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2015-09-26 04:00:22 +00:00
|
|
|
|
2018-05-15 12:10:29 +00:00
|
|
|
patches = [ ./nexus-bin.patch ./nexus-vm-opts.patch ];
|
2017-09-01 16:19:27 +00: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 16:19:27 +00:00
|
|
|
--set ALTERNATIVE_NAME "nexus" \
|
2021-01-23 12:26:19 +00:00
|
|
|
--prefix PATH "${lib.makeBinPath [ gawk ]}"
|
2018-05-15 12:10:29 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-09-01 16:19:27 +00:00
|
|
|
'';
|
2015-09-26 04:00:22 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-09-26 04:00:22 +00:00
|
|
|
description = "Repository manager for binary software components";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.sonatype.org/nexus";
|
2015-09-26 04:00:22 +00:00
|
|
|
license = licenses.epl10;
|
|
|
|
platforms = platforms.all;
|
2020-03-11 21:20:26 +00:00
|
|
|
maintainers = with maintainers; [ aespinosa ironpinguin zaninime ];
|
2015-09-26 04:00:22 +00:00
|
|
|
};
|
|
|
|
}
|