summary refs log tree commit diff
path: root/pkgs/applications/science/biology/ncbi-tools
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-31 22:04:32 +0200
committerajs124 <git@ajs124.de>2022-04-03 16:14:18 +0100
commit60f1e6ffe29a4b288f3801ff97b74e035109eee1 (patch)
treee4adaa1064104c32530ef5f6438b1f883fbf3e0a /pkgs/applications/science/biology/ncbi-tools
parent7a5f25594e48d366c588eab8d252ac223b2e8f54 (diff)
ncbi_tools: remove after being marked broken for over two years
It was marked in commit b9948fedc636daddd5851e71b634314fb0c34830 by Robin Gloster on 2017-03-30 (commited on 2017-03-30)
Diffstat (limited to 'pkgs/applications/science/biology/ncbi-tools')
-rw-r--r--pkgs/applications/science/biology/ncbi-tools/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/applications/science/biology/ncbi-tools/default.nix b/pkgs/applications/science/biology/ncbi-tools/default.nix
deleted file mode 100644
index dff041971ea7c..0000000000000
--- a/pkgs/applications/science/biology/ncbi-tools/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{stdenv, fetchurl, cpio}:
-
-# The NCBI package only builds on 32bits - on 64bits it breaks because
-# of position dependent code. Debian packagers have written replacement
-# make files(!). Either we use these, or negotiate a version which can
-# be pushed upstream to NCBI.
-#
-# Another note: you may want the older and deprecated C-libs at ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/2008/Mar_17_2008/NCBI_C_Toolkit/ncbi_c--Mar_17_2008.tar.gz
-
-stdenv.mkDerivation rec {
-  pname = "ncbi_tools";
-  version = "Dec_31_2008";
-  src = fetchurl {
-    url = "ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/2008/${version}/ncbi_cxx--${version}.tar.gz";
-    sha256 = "1b2v0dcdqn3bysgdkj57sxmd6s0hc9wpnxssviz399g6plhxggbr";
-  };
-
-  configureFlags = [
-    "--without-debug"
-    "--with-bin-release"
-    "--with-dll"
-    "--without-static"
-  ];
-  buildInputs = [ cpio ];
-
-  meta = {
-    description = "NCBI Bioinformatics toolbox (incl. BLAST)";
-    longDescription = "The NCBI Bioinformatics toolsbox, including command-line utilties, libraries and include files. No X11 support";
-    homepage = "http://www.ncbi.nlm.nih.gov/IEB/ToolBox/";
-    license = "GPL";
-    priority = 5;   # zlib.so gives a conflict with zlib
-    broken = true;
-  };
-}