samtools_0_1_19: drop (#405947)

authored by K900 and committed by GitHub 8d21d162 3d30336c

+1 -64
-22
pkgs/applications/science/biology/samtools/samtools-0.1.19-no-curses.patch
··· 1 - diff --git a/Makefile b/Makefile 2 - index 2f51bfc..395d6f1 100644 3 - --- a/Makefile 4 - +++ b/Makefile 5 - @@ -1,7 +1,7 @@ 6 - CC= gcc 7 - CFLAGS= -g -Wall -O2 8 - #LDFLAGS= -Wl,-rpath,\$$ORIGIN/../lib 9 - -DFLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_USE_KNETFILE -D_CURSES_LIB=1 10 - +DFLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_USE_KNETFILE # -D_CURSES_LIB=1 11 - KNETFILE_O= knetfile.o 12 - LOBJS= bgzf.o kstring.o bam_aux.o bam.o bam_import.o sam.o bam_index.o \ 13 - bam_pileup.o bam_lpileup.o bam_md.o razf.o faidx.o bedidx.o \ 14 - @@ -15,7 +15,7 @@ PROG= samtools 15 - INCLUDES= -I. 16 - SUBDIRS= . bcftools misc 17 - LIBPATH= 18 - -LIBCURSES= -lcurses # -lXCurses 19 - +LIBCURSES= # -lcurses # -lXCurses 20 - 21 - .SUFFIXES:.c .o 22 - .PHONY: all lib
-39
pkgs/applications/science/biology/samtools/samtools_0_1_19.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - zlib, 6 - }: 7 - 8 - stdenv.mkDerivation rec { 9 - pname = "samtools"; 10 - version = "0.1.19"; 11 - 12 - src = fetchurl { 13 - url = "mirror://sourceforge/samtools/${pname}-${version}.tar.bz2"; 14 - sha256 = "d080c9d356e5f0ad334007e4461cbcee3c4ca97b8a7a5a48c44883cf9dee63d4"; 15 - }; 16 - 17 - patches = [ 18 - ./samtools-0.1.19-no-curses.patch 19 - ]; 20 - 21 - buildInputs = [ zlib ]; 22 - 23 - installPhase = '' 24 - mkdir -p $out/bin 25 - mkdir -p $out/share/man 26 - 27 - cp samtools $out/bin 28 - cp samtools.1 $out/share/man 29 - ''; 30 - 31 - meta = with lib; { 32 - description = "Tools for manipulating SAM/BAM/CRAM format"; 33 - mainProgram = "samtools"; 34 - license = licenses.mit; 35 - homepage = "https://samtools.sourceforge.net/"; 36 - platforms = platforms.unix; 37 - maintainers = [ maintainers.unode ]; 38 - }; 39 - }
+1
pkgs/top-level/aliases.nix
··· 1649 1649 s2n = throw "'s2n' has been renamed to/replaced by 's2n-tls'"; # Converted to throw 2024-10-17 1650 1650 sandboxfs = throw "'sandboxfs' has been removed due to being unmaintained, consider using linux namespaces for sandboxing instead"; # Added 2024-06-06 1651 1651 sane-backends-git = throw "'sane-backends-git' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2024-10-17 1652 + samtools_0_1_19 = throw "'samtools_0_1_19' has been removed because it is unmaintained. Consider using 'samtools' instead"; # Added 2025-05-10 1652 1653 scantailor = scantailor-advanced; # Added 2022-05-26 1653 1654 schildichat-web = throw '' 1654 1655 schildichat has been removed as it is severely lacking behind the Element upstream and does not receive regular security fixes.
-3
pkgs/top-level/all-packages.nix
··· 15651 15651 raxml-mpi = raxml.override { useMpi = true; }; 15652 15652 15653 15653 samtools = callPackage ../applications/science/biology/samtools { }; 15654 - samtools_0_1_19 = callPackage ../applications/science/biology/samtools/samtools_0_1_19.nix { 15655 - stdenv = gccStdenv; 15656 - }; 15657 15654 15658 15655 inherit (callPackages ../applications/science/biology/sumatools { }) 15659 15656 sumalibs