5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
32 lines
777 B
Nix
32 lines
777 B
Nix
{ lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "last";
|
|
version = "1411";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mcfrith";
|
|
repo = "last";
|
|
rev = version;
|
|
sha256 = "sha256-CO3tlFx9NxGplErENG6iFikgE246swPITsVR+nHzsYw=";
|
|
};
|
|
|
|
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 lib; {
|
|
description = "Genomic sequence aligner";
|
|
homepage = "https://gitlab.com/mcfrith/last";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ jbedo ];
|
|
platforms = platforms.x86_64;
|
|
};
|
|
}
|