summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-17 03:55:18 +0000
committerGitHub <noreply@github.com>2017-12-17 03:55:18 +0000
commit609bf27001db1bb7e84bfc85a03e0fa74b355ff7 (patch)
treeb17ea2dbb000f7294ef0817ff2a000bef22100dd /pkgs/applications/networking
parent0aa5e8144388cb6e7a9f4b94714cca5e61b0cd4a (diff)
parentd7426b378e7cc6edcc26068740ffa5e3554d27cd (diff)
downloadnixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar.gz
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar.bz2
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar.lz
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar.xz
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.tar.zst
nixlib-609bf27001db1bb7e84bfc85a03e0fa74b355ff7.zip
Merge pull request #32603 from mogorman/esniper-2.33.0-git
esniper: 2.33.0 -> 2.33.0-git
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/esniper/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/networking/esniper/default.nix b/pkgs/applications/networking/esniper/default.nix
index b7bc2c6c67a0..80984208460b 100644
--- a/pkgs/applications/networking/esniper/default.nix
+++ b/pkgs/applications/networking/esniper/default.nix
@@ -1,11 +1,13 @@
-{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
+{ stdenv, fetchFromGitHub, openssl, curl, coreutils, gawk, bash, which }:
 
 stdenv.mkDerivation rec {
-  name = "esniper-2.33.0";
+  name = "esniper-2.33.0.2017-11-06";
 
-  src = fetchurl {
-    url    = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
-    sha256 = "1pck2x7mp7ip0b21v2sjvq86fz12gzw6kig4vvbrghz5xw5b3f69";
+  src = fetchFromGitHub {
+    owner = "yhfudev";
+    repo = "esniper";
+    rev = "c95140d376db3c991300a7462e6c172b0ccf3eb5";
+    sha256 = "1dfb5hmcrvm3yg9ask362c6s5ylxs21szw23dm737a94br37j890";
   };
 
   buildInputs = [ openssl curl ];