mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
14 lines
263 B
Nix
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}";
|
|
}
|