ssdeep: version 2.10

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-03-20 13:18:51 -05:00
parent 042f85cdd0
commit 0c3bb487c3
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "ssdeep-${version}";
version = "2.10";
src = fetchurl {
url = "mirror://sourceforge/ssdeep/${name}.tar.gz";
sha256 = "1p7dgchq8hgadnxz5qh95ay17k5j74l4qyd15wspc54lb603p2av";
};
postFixup = ''
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";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}

View file

@ -1953,6 +1953,8 @@ let
super = callPackage ../tools/security/super { };
ssdeep = callPackage ../tools/security/ssdeep { };
ssmtp = callPackage ../tools/networking/ssmtp {
tlsSupport = true;
};