about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-01 08:55:24 +0100
committerGitHub <noreply@github.com>2019-11-01 08:55:24 +0100
commite69fd930ed1b99aef491dc7af324c1a5712367df (patch)
treea9270679b22aa3d6b877accc7f83b9fec7d6fd06
parent30b10641e13e10968dc625e75b070b21e50c0016 (diff)
parentdf7727042f0252b5dd2f6a136175a320caa161f8 (diff)
downloadnixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar.gz
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar.bz2
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar.lz
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar.xz
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.tar.zst
nixlib-e69fd930ed1b99aef491dc7af324c1a5712367df.zip
Merge pull request #72193 from Ma27/bump-nexus
nexus: 3.18.1-01 -> 3.19.1-01
-rw-r--r--nixos/modules/services/web-apps/nexus.nix1
-rw-r--r--pkgs/development/tools/repository-managers/nexus/default.nix6
2 files changed, 5 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/nexus.nix b/nixos/modules/services/web-apps/nexus.nix
index 3af97e146d0a..d4d507362c97 100644
--- a/nixos/modules/services/web-apps/nexus.nix
+++ b/nixos/modules/services/web-apps/nexus.nix
@@ -68,6 +68,7 @@ in
           -Dkaraf.data=${cfg.home}/nexus3
           -Djava.io.tmpdir=${cfg.home}/nexus3/tmp
           -Dkaraf.startLocalConsole=false
+          -Djava.endorsed.dirs=${cfg.package}/lib/endorsed
         '';
 
         description = ''
diff --git a/pkgs/development/tools/repository-managers/nexus/default.nix b/pkgs/development/tools/repository-managers/nexus/default.nix
index acf9d03843d0..95a9e78383f3 100644
--- a/pkgs/development/tools/repository-managers/nexus/default.nix
+++ b/pkgs/development/tools/repository-managers/nexus/default.nix
@@ -2,13 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "nexus";
-  version = "3.18.1-01";
+  version = "3.19.1-01";
 
   src = fetchurl {
     url = "https://sonatype-download.global.ssl.fastly.net/nexus/3/nexus-${version}-unix.tar.gz";
-    sha256 = "0z3hb1ha0yvi09hrndrzzh95g3m42pfsi0gzw7hfx9r0n8r2qgkd";
+    sha256 = "0kjzp5n6pkgx5s21jfmh6pbgnjlvs89kcjqikv4lgc5yia264bks";
   };
 
+  preferLocalBuild = true;
+
   sourceRoot = "${pname}-${version}";
 
   nativeBuildInputs = [ makeWrapper ];