summary refs log tree commit diff
path: root/pkgs/applications/networking/esniper/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-06-05 18:38:33 +0000
committerPeter Simons <simons@cryp.to>2011-06-05 18:38:33 +0000
commit8d931c2771b4e3abe5143f6f07e3e5d2294cc89a (patch)
treead48db43fb18a2c931f302b9068cfc7f0e47244e /pkgs/applications/networking/esniper/default.nix
parentf03362d8c7f8421bc5d935ba018bb924b90ad6b6 (diff)
downloadnixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar.gz
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar.bz2
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar.lz
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar.xz
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.tar.zst
nixpkgs-8d931c2771b4e3abe5143f6f07e3e5d2294cc89a.zip
esniper: updated to version 2.25.0
svn path=/nixpkgs/trunk/; revision=27346
Diffstat (limited to 'pkgs/applications/networking/esniper/default.nix')
-rw-r--r--pkgs/applications/networking/esniper/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/esniper/default.nix b/pkgs/applications/networking/esniper/default.nix
index 5590e8f1156..96b66794c2c 100644
--- a/pkgs/applications/networking/esniper/default.nix
+++ b/pkgs/applications/networking/esniper/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, openssl, curl }:
 
 let
-    name    = "esniper";
+  name = "esniper";
 in
 stdenv.mkDerivation {
-  name = "${name}-2.24.0";
+  name = "${name}-2.25.0";
 
   src = fetchurl {
-    url = "mirror://sourceforge/${name}/${name}-2-24-0.tgz";
-    sha256 = "0h3nlw64x2dczfd4nmz890pk9372iwfzwyyb8zyhiaymb34z5c52";
+    url = "mirror://sourceforge/${name}/${name}-2-25-0.tgz";
+    sha256 = "64658eaca2fa27eaec0436a016648b12f6c49d7486cc3a6827f307aa93871def";
   };
 
   buildInputs = [openssl curl];