mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
31 lines
740 B
Nix
31 lines
740 B
Nix
{ lib, stdenv, fetchurl, unzip, zlib, python3, parallel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "last";
|
|
version = "1179";
|
|
|
|
src = fetchurl {
|
|
url = "http://last.cbrc.jp/last-${version}.zip";
|
|
sha256 = "sha256-949oiE7ZNkCOJuOK/huPkCN0c4TlVaTskkBe0joc0HU=";
|
|
};
|
|
|
|
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 = "http://last.cbrc.jp/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jbedo ];
|
|
platforms = platforms.x86_64;
|
|
};
|
|
}
|