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

Commits on Nov 7, 2017

  1. jenkins: 2.87 -> 2.88

    earldouglas committed Nov 7, 2017
    Copy the full SHA
    c7e3555 View commit details
  2. Copy the full SHA
    0e5014d View commit details
  3. Merge pull request #31362 from earldouglas/jenkins-2.88

    jenkins: 2.87 -> 2.88
    NeQuissimus authored Nov 7, 2017
    Copy the full SHA
    5b84cdf View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/continuous-integration/jenkins/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "jenkins-${version}";
version = "2.87";
version = "2.88";

src = fetchurl {
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
sha256 = "1nzs9nn1nr2jav59v1xj39rzmrh1zmwaqnpaiqsll8kixkr9rb8f";
sha256 = "062hnbyj73311sxhkwla6sl33zb43v8p7hjssgbh0bfvgmnlayim";
};

buildCommand = ''
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
homepage = http://jenkins-ci.org;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ coconnor fpletz ];
maintainers = with maintainers; [ coconnor fpletz earldouglas ];
};
}