depot/third_party/nixpkgs/pkgs/applications/science/biology/last/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

47 lines
819 B
Nix

{ lib
, stdenv
, fetchFromGitLab
, unzip
, zlib
, python3
, parallel
}:
stdenv.mkDerivation rec {
pname = "last";
version = "1460";
src = fetchFromGitLab {
owner = "mcfrith";
repo = "last";
rev = "refs/tags/${version}";
hash = "sha256-9Er15zsq9Xrw66M8QOmARC1S/O5NvmpdUvOZUGc92P0=";
};
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;
};
}