mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ad5676f8b9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/minimap2/versions
31 lines
753 B
Nix
31 lines
753 B
Nix
{ stdenv, fetchFromGitHub, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "minimap2";
|
|
version = "2.17";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = pname;
|
|
owner = "lh3";
|
|
rev = "v${version}";
|
|
sha256 = "0qdwlkib3aa6112372hdgvnvk86hsjjkhjar0p53pq4ajrr2cdlb";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp minimap2 $out/bin
|
|
mkdir -p $out/share/man/man1
|
|
cp minimap2.1 $out/share/man/man1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A versatile pairwise aligner for genomic and spliced nucleotide sequences";
|
|
homepage = https://lh3.github.io/minimap2;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.arcadio ];
|
|
};
|
|
}
|