nixpkgs/pkgs/applications/science/biology/last/default.nix

31 lines
743 B
Nix
Raw Normal View History

2019-12-18 04:55:20 +00:00
{ stdenv, fetchurl, unzip, zlib, python3, parallel }:
stdenv.mkDerivation rec {
pname = "last";
2020-03-27 04:12:41 +00:00
version = "1060";
2019-12-18 04:55:20 +00:00
src = fetchurl {
url = "http://last.cbrc.jp/last-${version}.zip";
2020-03-27 04:12:41 +00:00
sha256 = "0h0604rxg0z0h21dykrnxsb4679zfhibg79gss1v2ik5xpdxl8kk";
2019-12-18 04:55:20 +00:00
};
nativeBuildInputs = [ unzip ];
buildInputs = [ zlib python3 ];
makeFlags = [ "prefix=${placeholder "out"}" ];
postFixup = ''
for f in $out/bin/parallel-* ; do
sed -i 's|parallel |${parallel}/bin/parallel |' $f
done
'';
meta = with stdenv.lib; {
description = "Genomic sequence aligner";
homepage = "http://last.cbrc.jp/";
license = licenses.gpl3;
maintainers = with maintainers; [ jbedo ];
platforms = platforms.x86_64;
};
}