3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/last/default.nix

33 lines
762 B
Nix
Raw Normal View History

2021-10-19 03:23:14 +01:00
{ lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }:
2019-12-18 04:55:20 +00:00
stdenv.mkDerivation rec {
pname = "last";
2021-10-19 03:23:14 +01:00
version = "1256";
2019-12-18 04:55:20 +00:00
2021-10-19 03:23:14 +01:00
src = fetchFromGitLab {
owner = "mcfrith";
repo = "last";
rev = version;
sha256 = "sha256-lOsU0X4K6jYcbkTzwQV+KAerQh9odE4zCLtSgZrYH6s=";
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 lib; {
2019-12-18 04:55:20 +00:00
description = "Genomic sequence aligner";
homepage = "http://last.cbrc.jp/";
license = licenses.gpl3;
maintainers = with maintainers; [ jbedo ];
platforms = platforms.x86_64;
};
}