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

Commits on Mar 11, 2019

  1. Copy the full SHA
    c13a29e View commit details

Commits on Mar 14, 2019

  1. Merge pull request #57418 from dtzWill/update/kmod-26

    kmod: 25 -> 26
    dtzWill authored Mar 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    c0f08b8 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/os-specific/linux/kmod/default.nix
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/kmod/default.nix
Original file line number Diff line number Diff line change
@@ -6,12 +6,12 @@ let
modulesDirs = lib.concatMapStringsSep ":" (x: "${x}/lib/modules") systems;

in stdenv.mkDerivation rec {
name = "kmod-${version}";
version = "25";
pname = "kmod";
version = "26";

src = fetchurl {
url = "mirror://kernel/linux/utils/kernel/kmod/${name}.tar.xz";
sha256 = "1kgixs4m3jvwk7fb3d18n6j77qhgi9qfv4csj35rs5ancr4ycrbi";
url = "mirror://kernel/linux/utils/kernel/${pname}/${pname}-${version}.tar.xz";
sha256 = "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp";
};

nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];