nixpkgs/doc/shell.nix

14 lines
263 B
Nix
Raw Normal View History

let
pkgs = import ../. {
2024-07-26 10:44:13 -07:00
config = { };
overlays = [ ];
};
common = import ./common.nix;
inherit (common) outputPath indexPath;
in
2024-07-26 10:44:13 -07:00
pkgs.callPackage ../pkgs/tools/nix/web-devmode.nix {
buildArgs = "./.";
open = "/${outputPath}/${indexPath}";
}