5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
20 lines
420 B
Nix
20 lines
420 B
Nix
let
|
|
pkgs = import ../../.. {
|
|
config = {};
|
|
overlays = [];
|
|
};
|
|
|
|
common = import ./common.nix;
|
|
inherit (common) outputPath indexPath;
|
|
|
|
web-devmode = import ../../../pkgs/tools/nix/web-devmode.nix {
|
|
inherit pkgs;
|
|
buildArgs = "../../release.nix -A manualHTML.${builtins.currentSystem}";
|
|
open = "/${outputPath}/${indexPath}";
|
|
};
|
|
in
|
|
pkgs.mkShell {
|
|
packages = [
|
|
web-devmode
|
|
];
|
|
}
|