bonfire/devShells/openfoam.nix

10 lines
180 B
Nix
Raw Normal View History

2024-04-20 01:34:48 +05:00
{ pkgs, bonfire-pkgs, ... }:
2023-12-19 22:02:15 +05:00
pkgs.mkShellNoCC {
2024-04-20 01:34:48 +05:00
packages = [
bonfire-pkgs.openfoam
pkgs.mpi
2023-12-19 22:02:15 +05:00
];
2024-04-20 01:34:48 +05:00
shellHook = bonfire-pkgs.openfoam.passthru.shellHook;
2023-12-19 22:02:15 +05:00
}