bonfire/devShells/openfoam.nix

12 lines
213 B
Nix
Raw Normal View History

2023-12-19 22:02:15 +05:00
{ pkgs, bpkgs, ... }:
pkgs.mkShellNoCC {
packages = with pkgs; [
bpkgs.openfoam
mpi
];
shellHook = ''
. ${bpkgs.openfoam}/OpenFOAM-${bpkgs.openfoam.major}/etc/bashrc
'';
}