nixpkgs-suyu/pkgs/applications/science/biology/bwa/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib }:
2016-06-07 23:44:42 +02:00
stdenv.mkDerivation rec {
pname = "bwa";
2018-01-22 02:58:36 +01:00
version = "0.7.17";
2016-06-07 23:44:42 +02:00
2017-09-05 00:09:40 +02:00
src = fetchurl {
url = "mirror://sourceforge/bio-bwa/${pname}-${version}.tar.bz2";
2018-01-22 02:58:36 +01:00
sha256 = "1zfhv2zg9v1icdlq4p9ssc8k01mca5d1bd87w71py2swfi74s6yy";
2016-06-07 23:44:42 +02:00
};
buildInputs = [ zlib ];
2020-11-29 23:46:51 +01:00
# Avoid hardcoding gcc to allow environments with a different
# C compiler to build
preConfigure = ''
sed -i '/^CC/d' Makefile
'';
# it's unclear which headers are intended to be part of the public interface
# so we may find ourselves having to add more here over time
2016-06-07 23:44:42 +02:00
installPhase = ''
install -vD -t $out/bin bwa
install -vD -t $out/lib libbwa.a
install -vD -t $out/include bntseq.h
install -vD -t $out/include bwa.h
install -vD -t $out/include bwamem.h
install -vD -t $out/include bwt.h
2016-06-07 23:44:42 +02:00
'';
meta = with lib; {
2016-06-07 23:44:42 +02:00
description = "A software package for mapping low-divergent sequences against a large reference genome, such as the human genome";
license = licenses.gpl3;
homepage = "http://bio-bwa.sourceforge.net/";
2016-06-07 23:44:42 +02:00
maintainers = with maintainers; [ luispedro ];
2020-11-29 23:46:51 +01:00
platforms = platforms.x86_64;
2016-06-07 23:44:42 +02:00
};
}