2021-10-28 06:52:43 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "last";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "1260";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "mcfrith";
|
|
|
|
repo = "last";
|
|
|
|
rev = version;
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-bJNvoHr2sQYtiC3tr1GA0T0kRhDyx6hU3OOSTvKUSCs=";
|
2020-04-24 23:36:52 +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
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Genomic sequence aligner";
|
|
|
|
homepage = "http://last.cbrc.jp/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jbedo ];
|
|
|
|
platforms = platforms.x86_64;
|
|
|
|
};
|
|
|
|
}
|