blob: 9a8ce41e21918d9b2af1474c2fbc52d1a0066d39 (
plain)
1
2
3
4
5
6
7
8
9
|
{bionix, nixpkgs}:
with nixpkgs;
with bionix;
{
app = callPackage ./mutect-app.nix {inherit (nixpkgs) stdenv fetchurl makeWrapper unzip fetchFromGitHub;};
call = callBionix ./mutect-call.nix;
}
|