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: b22492ed817c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 28ea0a525911
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 19, 2017

  1. Copy the full SHA
    d1f7d79 View commit details
  2. iproute: 4.13.0 -> 4.14.1

    dezgeg committed Nov 19, 2017
    Copy the full SHA
    dfd2e6f View commit details
  3. pciutils: 3.5.5 -> 3.5.6

    dezgeg committed Nov 19, 2017
    Copy the full SHA
    28ea0a5 View commit details
Showing with 6 additions and 6 deletions.
  1. +2 −2 pkgs/os-specific/linux/iproute/default.nix
  2. +2 −2 pkgs/os-specific/linux/lvm2/default.nix
  3. +2 −2 pkgs/tools/system/pciutils/default.nix
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/iproute/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "iproute2-${version}";
version = "4.13.0";
version = "4.14.1";

src = fetchurl {
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
sha256 = "0l2w84cwr54gaw3cbxijf614l76hx8mgcz57v81rwl68z3nq3yww";
sha256 = "0rq0n7yxb0hmk0s6wx5awzjgf7ikjbibd0a5ix20ldfcmxlc0fnl";
};

preConfigure = ''
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/lvm2/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@
, thin-provisioning-tools, enable_dmeventd ? false }:

let
version = "2.02.175";
version = "2.02.176";
in

stdenv.mkDerivation {
name = "lvm2-${version}";

src = fetchurl {
url = "ftp://sources.redhat.com/pub/lvm2/releases/LVM2.${version}.tgz";
sha256 = "0n95cc2b0jb0fh2pd9jyg9ww7lyzpia9n9sryw9f4aq8dpna7dsd";
sha256 = "0wx4rvy4frdmb66znh2xms2j2n06sm361ki6l5ks4y1ciii87kny";
};

configureFlags = [
4 changes: 2 additions & 2 deletions pkgs/tools/system/pciutils/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:

stdenv.mkDerivation rec {
name = "pciutils-3.5.5"; # with database from 2017-07
name = "pciutils-3.5.6"; # with database from 2017-07

src = fetchurl {
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
sha256 = "1d62f8fa192f90e61c35a6fc15ff3cb9a7a792f782407acc42ef67817c5939f5";
sha256 = "08dvsk1b5m1r7qqzsm849h4glq67mngf8zw7bg0102ff1jwywipk";
};

nativeBuildInputs = [ pkgconfig ];