about summary refs log tree commit diff
path: root/pkgs/applications/networking/esniper
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-06-07 15:43:02 +0200
committerPeter Simons <simons@cryp.to>2019-06-07 15:43:52 +0200
commit3a64e98747cd4eadae4c5de60aa4d3443146b08b (patch)
treeb549df5cf29cc66682b823d5d23d53cb62344a6b /pkgs/applications/networking/esniper
parent7558624eaa6f42daf82545f1ff0c9f85229bbfc2 (diff)
esniper: update to latest git revision "Version_2_35_0-15-g91d2665"
The latest release no longer works.
Diffstat (limited to 'pkgs/applications/networking/esniper')
-rw-r--r--pkgs/applications/networking/esniper/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/esniper/default.nix b/pkgs/applications/networking/esniper/default.nix
index 87e0584c931ef..708d3c1ed800d 100644
--- a/pkgs/applications/networking/esniper/default.nix
+++ b/pkgs/applications/networking/esniper/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
+{ stdenv, fetchgit, openssl, curl, coreutils, gawk, bash, which }:
 
 stdenv.mkDerivation rec {
-  name = "esniper-2.35.0";
+  name = "esniper-2.35.0-15-g91d2665";
 
-   src = fetchurl {
-     url    = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
-     sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
-   };
+  src = fetchgit {
+    url    = "https://git.code.sf.net/p/esniper/git";
+    rev    = "91d2665539beaeac21fb4c0cc2fd39c44e771ed7";
+    sha256 = "0dixcsvbcj9jbfjfv50nwvw7w90c4s6gnkrpilaan984i6y45rw0";
+  };
 
   buildInputs = [ openssl curl ];