aboutsummaryrefslogtreecommitdiff
path: root/conda.nix
blob: 4006218a540ecc7a8376ecf50b75eb3ba44bbb43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{pkgs ? import <nixpkgs> {}}:

with pkgs;

stdenv.mkDerivation {
  name = "conda";
  src = ./conda.nix;
  phases = [ "buildPhase" ];
  buildInputs = [ conda ];
  buildPhase = ''
    HOME=$TMPDIR
    conda-shell-4.3.31 << EOF
    conda-install
    conda config --add channels bioconda
    conda install -y bwa
    bwa
    EOF
  '';
}