Skip to content

Commit a39ef1c

Browse files
committed
tmp
1 parent e79e113 commit a39ef1c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flake.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
});
7373
groups = [ ];
7474
checkGroups = [ ];
75+
76+
# Add gfortran on macOS to ensure libgfortran.x.dylib is in the runtime path
77+
# nativeBuildInputs = pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.gfortran ];
7578
};
7679

7780
mkKomet = {komet-rust ? null, komet-stellar ? null}@args: pkgs.stdenv.mkDerivation {
@@ -88,7 +91,8 @@
8891
k-framework.packages.${system}.pyk-python310
8992
k-framework.packages.${system}.k
9093
komet-pyk
91-
];
94+
# Add gfortran on macOS to ensure libgfortran.x.dylib is in the runtime path
95+
] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.gfortran ];
9296

9397
dontUseCmakeConfigure = true;
9498

0 commit comments

Comments
 (0)