mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
a064709342
Co-authored-by: Alejandro Sanchez Medina <alejandrosanchzmedina@gmail.com>
21 lines
420 B
Nix
21 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
|
|
];
|
|
}
|