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

31 lines
740 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, unzip, zlib, python3, parallel }:
2019-12-18 04:55:20 +00:00
stdenv.mkDerivation rec {
pname = "last";
2021-02-21 21:24:17 +00:00
version = "1179";
2019-12-18 04:55:20 +00:00
src = fetchurl {
url = "http://last.cbrc.jp/last-${version}.zip";
2021-02-21 21:24:17 +00:00
sha256 = "sha256-949oiE7ZNkCOJuOK/huPkCN0c4TlVaTskkBe0joc0HU=";
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;
};
}