summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kmod
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-06-09 17:30:33 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-06-13 10:57:19 +0200
commit1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14 (patch)
tree50af2919914e62fdae8c3a76ec891645140a217e /pkgs/os-specific/linux/kmod
parentdbb4452ee31df81c2d1dbbd35d34dd1ac736df55 (diff)
downloadnixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar.gz
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar.bz2
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar.lz
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar.xz
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.tar.zst
nixpkgs-1b6e357424ea1fb0f1d4b36ecc8e2c0f9a3cae14.zip
kmod: 26 -> 27
Diffstat (limited to 'pkgs/os-specific/linux/kmod')
-rw-r--r--pkgs/os-specific/linux/kmod/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/kmod/default.nix b/pkgs/os-specific/linux/kmod/default.nix
index de025b436f5..f1cc4558b05 100644
--- a/pkgs/os-specific/linux/kmod/default.nix
+++ b/pkgs/os-specific/linux/kmod/default.nix
@@ -8,11 +8,11 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "kmod";
-  version = "26";
+  version = "27";
 
   src = fetchurl {
     url = "mirror://kernel/linux/utils/kernel/${pname}/${pname}-${version}.tar.xz";
-    sha256 = "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp";
+    sha256 = "035wzfzjx4nwidk747p8n085mgkvy531ppn16krrajx2dkqzply1";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
@@ -38,8 +38,16 @@ in stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = "https://www.kernel.org/pub/linux/utils/kernel/kmod/";
     description = "Tools for loading and managing Linux kernel modules";
+    longDescription = ''
+      kmod is a set of tools to handle common tasks with Linux kernel modules
+      like insert, remove, list, check properties, resolve dependencies and
+      aliases. These tools are designed on top of libkmod, a library that is
+      shipped with kmod.
+    '';
+    homepage = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/";
+    downloadPage = "https://www.kernel.org/pub/linux/utils/kernel/kmod/";
+    changelog = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/plain/NEWS?h=v${version}";
     license = licenses.lgpl21;
     platforms = platforms.unix;
   };