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 381c5e6 commit 8a590d9Copy full SHA for 8a590d9
flake.nix
@@ -83,6 +83,20 @@
83
'';
84
85
};
86
+
87
+ packages.pulse-exe = pkgs.writeShellScriptBin "pulse.exe" ''
88
+ exec ${inputs.fstar.packages.${system}.fstar}/bin/fstar.exe "$1" \
89
+ --include ${config.packages.pulse}/lib/pulse \
90
+ --include ${config.packages.pulse}/lib/pulse/c \
91
+ --include ${config.packages.pulse}/lib/pulse/core \
92
+ --include ${config.packages.pulse}/lib/pulse/lib \
93
+ --include ${config.packages.pulse}/lib/pulse/lib/class \
94
+ --include ${config.packages.pulse}/lib/pulse/lib/ml \
95
+ --include ${config.packages.pulse}/lib/pulse/lib/pledge \
96
+ --load_cmxs pulse \
97
+ "$@"
98
+ '';
99
100
devShells = {
101
default = inputs.devenv.lib.mkShell {
102
inherit inputs pkgs;
0 commit comments