mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
nixpkgs-manual: move shell to package
This commit is contained in:
parent
b5dc82844f
commit
eaa7811104
@ -99,6 +99,11 @@ stdenvNoCC.mkDerivation (
|
|||||||
|
|
||||||
pythonInterpreterTable = callPackage ./python-interpreter-table.nix { };
|
pythonInterpreterTable = callPackage ./python-interpreter-table.nix { };
|
||||||
|
|
||||||
|
shell = callPackage ../../pkgs/tools/nix/web-devmode.nix {
|
||||||
|
buildArgs = "./.";
|
||||||
|
open = "/${common.outputPath}/${common.indexPath}";
|
||||||
|
};
|
||||||
|
|
||||||
tests.manpage-urls = callPackage ../tests/manpage-urls.nix { };
|
tests.manpage-urls = callPackage ../tests/manpage-urls.nix { };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,5 @@ let
|
|||||||
config = { };
|
config = { };
|
||||||
overlays = [ ];
|
overlays = [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
common = import ./common.nix;
|
|
||||||
inherit (common) outputPath indexPath;
|
|
||||||
in
|
in
|
||||||
pkgs.callPackage ../pkgs/tools/nix/web-devmode.nix {
|
pkgs.nixpkgs-manual.shell
|
||||||
buildArgs = "./.";
|
|
||||||
open = "/${outputPath}/${indexPath}";
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user