about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-03 22:07:59 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-03 22:07:59 +0000
commitbb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec (patch)
treecd9207831f1b53f12a48695acfb2a36c1d59ce7b
parent39c24a480171bf1de3c4cfc63d0eda2c7bd913c6 (diff)
downloadnixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar.gz
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar.bz2
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar.lz
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar.xz
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.tar.zst
nixlib-bb8a2181ada9a5eaadf4807f99e4af1c7d61f6ec.zip
Updating kismet
svn path=/nixpkgs/trunk/; revision=20934
-rw-r--r--pkgs/applications/networking/sniffers/kismet/default.nix10
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/networking/sniffers/kismet/default.nix b/pkgs/applications/networking/sniffers/kismet/default.nix
index 37db2dde0ed7..a7831785db81 100644
--- a/pkgs/applications/networking/sniffers/kismet/default.nix
+++ b/pkgs/applications/networking/sniffers/kismet/default.nix
@@ -1,14 +1,14 @@
-{stdenv, fetchurl, libpcap, ncurses, expat}:
+{stdenv, fetchurl, libpcap, ncurses, expat, pcre}:
 
 stdenv.mkDerivation {
-  name = "kismet-2008-05-r1";
+  name = "kismet-2010-01-r1";
 
   src = fetchurl {
-    url = http://www.kismetwireless.net/code/kismet-2008-05-R1.tar.gz;
-    sha256 = "a298d44f8a6ec977021cd492a720987ded81b5c4baf5f68b36f1282a23c9f7d3";
+    url = http://www.kismetwireless.net/code/kismet-2010-01-R1.tar.gz;
+    sha256 = "106qird64x1v29nz6k5zs9dxxdq6q7fb7d6np0pnwm3dd2p1w7cx";
   };
 
-  buildInputs = [libpcap ncurses expat];
+  buildInputs = [libpcap ncurses expat pcre];
   postConfigure =
     "sed -e 's@-o \$(INSTUSR)@@' \\
         -e 's@-g \$(INSTGRP)@@' \\
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 45e62480dbf4..83cfc589dbd6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -990,7 +990,7 @@ let
   };
 
   kismet = import ../applications/networking/sniffers/kismet {
-    inherit fetchurl stdenv libpcap ncurses expat;
+    inherit fetchurl stdenv libpcap ncurses expat pcre;
   };
 
   ktorrent = import ../tools/networking/p2p/ktorrent {