mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
21 lines
356 B
Nix
21 lines
356 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 = "./.";
|
||
|
open = "/${outputPath}/${indexPath}";
|
||
|
};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
packages = [
|
||
|
web-devmode
|
||
|
];
|
||
|
}
|