2023-07-12 12:50:47 +01:00
|
|
|
let
|
|
|
|
pkgs = import ../../.. {
|
2024-07-26 18:44:13 +01:00
|
|
|
config = { };
|
|
|
|
overlays = [ ];
|
2023-07-12 12:50:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
common = import ./common.nix;
|
|
|
|
inherit (common) outputPath indexPath;
|
2024-11-08 18:06:07 +00:00
|
|
|
devmode = pkgs.devmode.override {
|
2024-11-08 17:40:27 +00:00
|
|
|
buildArgs = "../../release.nix -A manualHTML.${builtins.currentSystem}";
|
|
|
|
open = "/${outputPath}/${indexPath}";
|
|
|
|
};
|
2023-07-12 12:50:47 +01:00
|
|
|
in
|
2024-11-08 17:40:27 +00:00
|
|
|
pkgs.mkShellNoCC {
|
|
|
|
packages = [ devmode ];
|
2024-07-26 18:44:13 +01:00
|
|
|
}
|