10 lines
180 B
Nix
10 lines
180 B
Nix
{ pkgs, bonfire-pkgs, ... }:
|
|
pkgs.mkShellNoCC {
|
|
packages = [
|
|
bonfire-pkgs.openfoam
|
|
pkgs.mpi
|
|
];
|
|
|
|
shellHook = bonfire-pkgs.openfoam.passthru.shellHook;
|
|
}
|