4 lines
97 B
Nix
4 lines
97 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [nix-eval-jobs];
|
|
}
|