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

kmod: 25 -> 26
This commit is contained in:
Will Dietz 2019-03-14 14:30:29 -05:00 committed by GitHub
commit c0f08b80a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];