about summary refs log tree commit diff
path: root/pkgs/tools/security/ssdeep/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/ssdeep/default.nix')
-rw-r--r--pkgs/tools/security/ssdeep/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/tools/security/ssdeep/default.nix b/pkgs/tools/security/ssdeep/default.nix
deleted file mode 100644
index 68b8afdf6712..000000000000
--- a/pkgs/tools/security/ssdeep/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
-
-stdenv.mkDerivation rec {
-  pname = "ssdeep";
-  version = "2.14.1";
-
-  src = fetchFromGitHub {
-    owner = "ssdeep-project";
-    repo = "ssdeep";
-    rev = "release-${version}";
-    sha256 = "1yx6yjkggshw5yl89m4kvyzarjdg2l3hs0bbjbrfzwp1lkfd8i0c";
-  };
-
-  nativeBuildInputs = [ autoreconfHook ];
-
-  # remove forbidden references to $TMPDIR
-  preFixup = lib.optionalString stdenv.isLinux ''
-    patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out"/bin/*
-  '';
-
-  meta = {
-    description = "Program for calculating fuzzy hashes";
-    mainProgram = "ssdeep";
-    homepage    = "http://www.ssdeep.sf.net";
-    license     = lib.licenses.gpl2Plus;
-    platforms   = lib.platforms.unix;
-    maintainers = [ lib.maintainers.thoughtpolice ];
-  };
-}