Compare commits

...

No commits in common. "04936c47ccf3089c119c66d3e3e0b1f4ceefe96c" and "8339a8ccf44b745d05d218644cef0693a6879465" have entirely different histories.

1 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs { } }:
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs { };
in pkgs.mkShell {
with pkgs;
mkShell { buildInputs = [ R rPackages.immuneSIM jdk ]; }
buildInputs = with pkgs; [ R rPackages.immuneSIM jdk ];
}