mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
ssdeep: version 2.10
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
042f85cdd0
commit
0c3bb487c3
23
pkgs/tools/security/ssdeep/default.nix
Normal file
23
pkgs/tools/security/ssdeep/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -1953,6 +1953,8 @@ let
|
||||
|
||||
super = callPackage ../tools/security/super { };
|
||||
|
||||
ssdeep = callPackage ../tools/security/ssdeep { };
|
||||
|
||||
ssmtp = callPackage ../tools/networking/ssmtp {
|
||||
tlsSupport = true;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user