1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

nix: Remove minimal development shell

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-04-10 00:15:28 +02:00
parent 6c31b4f7e0
commit 41a9b07da2
2 changed files with 1 additions and 13 deletions

View file

@ -105,12 +105,6 @@
in rec {
default = full;
minimal = pkgs.mkShell {
inherit shellHook hardeningDisable packages;
name = "minimal";
inputsFrom = with pkgs; [villas-minimal];
};
full = pkgs.mkShell {
inherit shellHook hardeningDisable packages;
name = "full";

View file

@ -79,13 +79,7 @@ Try for example these commands in the repository root to create a new shell with
all required dependencies to build various configurations of the `villas` CLI command.
```shell
# create a shell with all required build dependecies but without most optional ones
nix develop ./packaging/nix#minimal
# create a shell with all required build dependecies with most optional ones
nix develop ./packaging/nix#full
# the default creates the `#full` shell
# The default creates the `#full` shell
nix develop ./packaging/nix
```