summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2017-11-06 23:03:11 -0600
committerAustin Seipp <aseipp@pobox.com>2017-11-09 13:19:55 -0600
commita38765215963b1fb4c6beb394fffc5c87282a478 (patch)
tree2f6f22bd6590eb991691f3149fe79d4cd6571a90 /pkgs
parentaec3326ca4aa7e5186da9fddcab7fdf8356865ab (diff)
downloadnixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar.gz
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar.bz2
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar.lz
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar.xz
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.tar.zst
nixlib-a38765215963b1fb4c6beb394fffc5c87282a478.zip
nixpkgs: remove busted 'tmin' package
Obsoleted by afl-tmin

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/tmin/default.nix28
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/security/tmin/default.nix b/pkgs/tools/security/tmin/default.nix
deleted file mode 100644
index 30bca5d1b26f..000000000000
--- a/pkgs/tools/security/tmin/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchurl, bash }:
-
-stdenv.mkDerivation rec {
-  name    = "tmin-${version}";
-  version = "0.05";
-
-  src = fetchurl {
-    url    = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/tmin/${name}.tar.gz";
-    sha256 = "0166kcfs4b0da4hs2aqyn41f5l09i8rwxpi20k7x17qsxbmjbpd5";
-  };
-
-  buildPhase   = ''
-    gcc -O3 -funroll-loops -fno-strict-aliasing -Wno-pointer-sign tmin.c -o tmin
-  '';
-  installPhase = "mkdir -p $out/bin && mv tmin $out/bin";
-
-  meta = {
-    description = "Fuzzing tool test-case optimizer";
-    longDescription = ''
-      This project is obsolete and replaced by the afl-tmin tool bundled with american fuzzy lop (<literal>afl</literal>)
-    '';
-    homepage    = "https://code.google.com/archive/p/tmin/";
-    license     = stdenv.lib.licenses.asl20;
-    platforms   = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
-    broken      = true; # officially deprecated upstream in favor of afl-tmin (afl package)
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 33dbb2f596ad..2eea98bb7c09 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4687,8 +4687,6 @@ with pkgs;
 
   tmuxinator = callPackage ../tools/misc/tmuxinator { };
 
-  tmin = callPackage ../tools/security/tmin { };
-
   tmsu = callPackage ../tools/filesystems/tmsu { };
 
   toilet = callPackage ../tools/misc/toilet { };