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

Commits on May 13, 2019

  1. iproute: 5.0.0 -> 5.1.0

    "Most of the new features for this release are in the devlink and rdma utilities.
    And most of the bug fixes are in fixing the output format glitches
    that resulted from converting most of the tools to have JSON
    output." [0]
    
    File changes:
    +share/man/man8/devlink-health.8.gz
    
    nix path-info -S:
    5.0.0 46661416
    5.1.0 46677880
    
    [0]: https://www.spinics.net/lists/netdev/msg569915.html
    primeos committed May 13, 2019
    Copy the full SHA
    9aca862 View commit details

Commits on May 14, 2019

  1. Merge pull request #61252 from primeos/iproute2

    iproute: 5.0.0 -> 5.1.0
    primeos authored May 14, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    49a1124 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/os-specific/linux/iproute/default.nix
6 changes: 3 additions & 3 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 {
pname = "iproute2";
version = "5.0.0";
version = "5.1.0";

src = fetchurl {
url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
sha256 = "1fi03lb8dqr8hq633gcqsf6228vsvysxms075j1yyl4nlc17616z";
sha256 = "1kvvrz5mlpjxqcm7vl6i8w6l1cb2amp6p5xyq006pgzafc49hnnw";
};

preConfigure = ''
@@ -50,6 +50,6 @@ stdenv.mkDerivation rec {
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ eelco fpletz ];
maintainers = with maintainers; [ primeos eelco fpletz ];
};
}