summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-10-09 17:06:17 -0500
committerAustin Seipp <aseipp@pobox.com>2014-10-09 17:06:17 -0500
commit9b391aadcee3f0825b3eeeae05faa06a25153167 (patch)
treee65fc607a0a19f6f51c770a47056425756ec646c /pkgs/tools/security
parent37b9a2bad57b4802e597cb478e087c17a86867a4 (diff)
downloadnixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar.gz
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar.bz2
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar.lz
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar.xz
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.tar.zst
nixpkgs-9b391aadcee3f0825b3eeeae05faa06a25153167.zip
ssdeep: 2.10 -> 2.11
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/ssdeep/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/tools/security/ssdeep/default.nix b/pkgs/tools/security/ssdeep/default.nix
index c5c47441704..fd97a6e618d 100644
--- a/pkgs/tools/security/ssdeep/default.nix
+++ b/pkgs/tools/security/ssdeep/default.nix
@@ -2,17 +2,13 @@
 
 stdenv.mkDerivation rec {
   name    = "ssdeep-${version}";
-  version = "2.10";
+  version = "2.11";
 
   src = fetchurl {
     url    = "mirror://sourceforge/ssdeep/${name}.tar.gz";
-    sha256 = "1p7dgchq8hgadnxz5qh95ay17k5j74l4qyd15wspc54lb603p2av";
+    sha256 = "1izzkvrng4cc2p8gxp3w32k1v60l2yaq2y2hkifgq9s1yh30xk42";
   };
 
-  postFixup = stdenv.lib.optionalString stdenv.isLinux ''
-    patchelf --set-rpath "$(patchelf --print-rpath $out/bin/ssdeep):$out/lib" $out/bin/ssdeep
-  '';
-
   meta = {
     description = "A program for calculating fuzzy hashes";
     homepage    = "http://www.ssdeep.sf.net";