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

Commits on Oct 13, 2018

  1. jenkins: 2.89.4 -> 2.107.3 (#41618)

    (cherry picked from commit 500f1a9)
    fuzzy-id authored and fpletz committed Oct 13, 2018
    Copy the full SHA
    2424c81 View commit details
  2. jenkins: 2.107.3 -> 2.121.2 (#43936)

    (cherry picked from commit 1bb4fd7)
    pinktrink authored and fpletz committed Oct 13, 2018
    Copy the full SHA
    c314203 View commit details
  3. jenkins: 2.121.2 -> 2.138.1

    (cherry picked from commit 16ce28e)
    bchallenor authored and fpletz committed Oct 13, 2018
    Copy the full SHA
    af21727 View commit details
  4. jenkins: 2.138.1 -> 2.138.2

    (cherry picked from commit 88e7d7b)
    bchallenor authored and fpletz committed Oct 13, 2018
    Copy the full SHA
    d457ecd View commit details
  5. wireguard: 0.0.20180904 -> 0.0.20181007

    backport of 97d2779
    fpletz committed Oct 13, 2018
    Copy the full SHA
    e85e0c2 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/tools/continuous-integration/jenkins/default.nix
  2. +2 −2 pkgs/os-specific/linux/wireguard/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "jenkins-${version}";
version = "2.89.4";
version = "2.138.2";

src = fetchurl {
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
sha256 = "0lwv3y12r36amkr70fap5g1zfd7vv92809lh9w7178s91sikm28x";
sha256 = "10qyr8izngnhlr1b03a9vdnbmwprbqsjnd55hjdalmxy6dq5mvfq";
};

buildCommand = ''
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/wireguard/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@ assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";

let
name = "wireguard-${version}";
version = "0.0.20180904";
version = "0.0.20181007";

src = fetchurl {
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
sha256 = "1w9qzvrsivc3k18hl1fv513in4gi1m0my26hlb6vfzaak5rav3m3";
sha256 = "12dg2jrwp26mv8zzmp4cnqs9n3m55x6dcxkyjjsp2j2r2q90svnj";
};

meta = with stdenv.lib; {