mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
71 lines
1.5 KiB
Nix
71 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
makeWrapper,
|
|
jre_headless,
|
|
gawk,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nexus";
|
|
version = "3.70.1-02";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.sonatype.com/nexus/3/nexus-${version}-unix.tar.gz";
|
|
hash = "sha256-oBappm8WRcgyD5HWqJKPbMHjlwCUo9y5+FtB2Kq1PCE=";
|
|
};
|
|
|
|
preferLocalBuild = true;
|
|
|
|
sourceRoot = "${pname}-${version}";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
patches = [
|
|
./nexus-bin.patch
|
|
./nexus-vm-opts.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace bin/nexus.vmoptions \
|
|
--replace-fail ../sonatype-work /var/lib/sonatype-work \
|
|
--replace-fail etc/karaf $out/etc/karaf \
|
|
--replace-fail =. =$out
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -rfv * .install4j $out
|
|
rm -fv $out/bin/nexus.bat
|
|
|
|
wrapProgram $out/bin/nexus \
|
|
--set JAVA_HOME ${jre_headless} \
|
|
--set ALTERNATIVE_NAME "nexus" \
|
|
--prefix PATH "${lib.makeBinPath [ gawk ]}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) nexus;
|
|
};
|
|
|
|
meta = {
|
|
description = "Repository manager for binary software components";
|
|
homepage = "https://www.sonatype.com/products/sonatype-nexus-oss";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
license = lib.licenses.epl10;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [
|
|
aespinosa
|
|
ironpinguin
|
|
luftmensch-luftmensch
|
|
zaninime
|
|
];
|
|
};
|
|
}
|