about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dropwatch
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-10-31 20:22:10 +0100
committerGitHub <noreply@github.com>2019-10-31 20:22:10 +0100
commitbcee548e8ee8f9066b95f0551a257c24ec102ca3 (patch)
tree7eaf27cfc05993b5e0b14c2a855b0f600f7b507e /pkgs/os-specific/linux/dropwatch
parentbca9437d1eae9519b61a58f2593f25f65494f8e9 (diff)
dropwatch: 1.5 -> 1.5.1
Diffstat (limited to 'pkgs/os-specific/linux/dropwatch')
-rw-r--r--pkgs/os-specific/linux/dropwatch/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/dropwatch/default.nix b/pkgs/os-specific/linux/dropwatch/default.nix
index f5b7e44a3fbc7..061dce0486076 100644
--- a/pkgs/os-specific/linux/dropwatch/default.nix
+++ b/pkgs/os-specific/linux/dropwatch/default.nix
@@ -3,17 +3,16 @@
 
 stdenv.mkDerivation rec {
   pname = "dropwatch";
-  version = "1.5";
+  version = "1.5.1";
 
   src = fetchFromGitHub {
     owner = "nhorman";
     repo = pname;
-    rev = version;
-    sha256 = "085hyyl28v0vpxfnmzchl97fjfnzj46ynhkg6y4i6h194y0d99m7";
+    rev = "v${version}";
+    sha256 = "1qmax0l7z1qik42c949fnvjh5r6awk4gpgzdsny8iwnmwzjyp8b8";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
-
   buildInputs = [ libbfd libnl ncurses readline zlib ];
 
   # To avoid running into https://sourceware.org/bugzilla/show_bug.cgi?id=14243 we need to define:
@@ -25,8 +24,8 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
-    description = "Kernel dropped packet monitor";
-    homepage = https://github.com/nhorman/dropwatch;
+    description = "Linux kernel dropped packet monitor";
+    homepage = "https://github.com/nhorman/dropwatch";
     license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = [ maintainers.c0bw3b ];