summary refs log tree commit diff
path: root/pkgs/applications/science/biology/bwa/default.nix
blob: 4e163a5b3f8f912e33be131108ac805dff27a01b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, zlib }:

stdenv.mkDerivation rec {
  name    = "bwa-${version}";
  version = "0.7.15";

  src = fetchFromGitHub {
    owner  = "lh3";
    repo   = "bwa";
    rev    = "v${version}";
    sha256 = "1aasdr3lik42gafi9lds7xw0wgv8ijjll1g32d7jm04pp235c7nl";
  };

  buildInputs = [ zlib ];

  installPhase = ''
    mkdir -p $out/bin
    cp bwa $out/bin
  '';

  meta = with stdenv.lib; {
    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/;
    maintainers = with maintainers; [ luispedro ];
    platforms = with platforms; linux;
  };
}