nixpkgs-manual: move shell to package

This commit is contained in:
Philip Taron 2024-07-26 11:47:32 -07:00
parent b5dc82844f
commit eaa7811104
No known key found for this signature in database
2 changed files with 6 additions and 7 deletions

View File

@ -99,6 +99,11 @@ stdenvNoCC.mkDerivation (
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 { };
};
}

View File

@ -3,11 +3,5 @@ let
config = { };
overlays = [ ];
};
common = import ./common.nix;
inherit (common) outputPath indexPath;
in
pkgs.callPackage ../pkgs/tools/nix/web-devmode.nix {
buildArgs = "./.";
open = "/${outputPath}/${indexPath}";
}
pkgs.nixpkgs-manual.shell