Skip to content

Commit

Permalink
Merge pull request NixOS#53927 from zaninime/patch-1
Browse files Browse the repository at this point in the history
nexus: 3.14.0-04 -> 3.15.0-01
  • Loading branch information
Ma27 authored Jan 21, 2019
2 parents 8fce033 + da98284 commit f9816bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/tools/repository-managers/nexus/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, gawk }:
{ stdenv, fetchurl, makeWrapper, jre_headless, gawk }:

stdenv.mkDerivation rec {
name = "nexus-${version}";
version = "3.14.0-04";
version = "3.15.0-01";

src = fetchurl {
url = "https://sonatype-download.global.ssl.fastly.net/nexus/3/nexus-${version}-unix.tar.gz";
sha256 = "1ql707672xhybmfajjmli9w0wcf1f26skq8i5kqirms2364wg35f";
sha256 = "0akizdljcjl1nh25k01wxvp5wp4i2jphsj0hh5rqbd0fk1pjivkv";
};

sourceRoot = name;
Expand All @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
rm -fv $out/bin/nexus.bat
wrapProgram $out/bin/nexus \
--set JAVA_HOME ${jre} \
--set JAVA_HOME ${jre_headless} \
--set ALTERNATIVE_NAME "nexus" \
--prefix PATH "${stdenv.lib.makeBinPath [ gawk ]}"
Expand Down

0 comments on commit f9816bd

Please sign in to comment.