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: 045ecd11f829
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5fe20c7f414
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 9, 2017

  1. maven: 3.3.9 -> 3.5.0

    cko committed Apr 9, 2017
    Copy the full SHA
    b7223e0 View commit details

Commits on Apr 10, 2017

  1. Merge pull request #24773 from cko/maven-3_5_0

    maven: 3.3.9 -> 3.5.0
    nckx authored Apr 10, 2017
    Copy the full SHA
    f5fe20c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/build-managers/apache-maven/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

assert jdk != null;

let version = "3.3.9"; in
let version = "3.5.0"; in
stdenv.mkDerivation rec {
name = "apache-maven-${version}";

builder = ./builder.sh;

src = fetchurl {
url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz";
sha256 = "6e3e9c949ab4695a204f74038717aa7b2689b1be94875899ac1b3fe42800ff82";
sha256 = "0d7hjnj77hc7qqnnfmqlwij8n6pcldfavvd6lilvv5ak4hci9fdy";
};

buildInputs = [ makeWrapper ];