mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, hmmer, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.1";
|
|
pname = "itsx";
|
|
|
|
src = fetchurl {
|
|
url = "http://microbiology.se/sw/ITSx_${version}.tar.gz";
|
|
sha256 = "0lrmy2n3ax7f208k0k8l3yz0j5cpz05hv4hx1nnxzn0c51z1pc31";
|
|
};
|
|
|
|
buildInputs = [ hmmer perl ];
|
|
|
|
buildPhase = ''
|
|
sed -e "s,profileDB = .*,profileDB = \"$out/share/ITSx_db/HMMs\";," -i ITSx
|
|
sed "3 a \$ENV{\'PATH\'}='${hmmer}/bin:'.\"\$ENV{\'PATH\'}\";" -i ITSx
|
|
mkdir bin
|
|
mv ITSx bin
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/doc && cp -a bin $out/
|
|
cp *pdf $out/share/doc
|
|
cp -r ITSx_db $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Improved software detection and extraction of ITS1 and ITS2 from ribosomal ITS sequences of fungi and other eukaryotes for use in environmental sequencing";
|
|
mainProgram = "ITSx";
|
|
homepage = "https://microbiology.se/software/itsx/";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.bzizou ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|