We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79e113 commit a39ef1cCopy full SHA for a39ef1c
flake.nix
@@ -72,6 +72,9 @@
72
});
73
groups = [ ];
74
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 ];
78
};
79
80
mkKomet = {komet-rust ? null, komet-stellar ? null}@args: pkgs.stdenv.mkDerivation {
@@ -88,7 +91,8 @@
88
91
k-framework.packages.${system}.pyk-python310
89
92
k-framework.packages.${system}.k
90
93
komet-pyk
- ];
94
95
+ ] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.gfortran ];
96
97
dontUseCmakeConfigure = true;
98
0 commit comments