1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/doc/shell.nix
2024-07-26 13:43:59 -07:00

14 lines
263 B
Nix

let
pkgs = import ../. {
config = { };
overlays = [ ];
};
common = import ./common.nix;
inherit (common) outputPath indexPath;
in
pkgs.callPackage ../pkgs/tools/nix/web-devmode.nix {
buildArgs = "./.";
open = "/${outputPath}/${indexPath}";
}