Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 36586a92d396
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fed820b7b84f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 17, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    648a695 View commit details
  2. Merge pull request #85429 from zaninime/backport-nexus

    [19.09] nexus: 3.18.1-01 -> 3.22.0-02 (backport)
    Ma27 authored Apr 17, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    fed820b View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/tools/repository-managers/nexus/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/tools/repository-managers/nexus/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,15 @@

stdenv.mkDerivation rec {
pname = "nexus";
version = "3.18.1-01";
version = "3.22.0-02";

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

preferLocalBuild = true;

sourceRoot = "${pname}-${version}";

nativeBuildInputs = [ makeWrapper ];