From fee813b7e841dfd7d81ccd973485a8b7f3d0380a Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 10 Apr 2024 00:15:28 +0200 Subject: [PATCH] nix: Remove minimal development shell Signed-off-by: Steffen Vogel --- flake.nix | 6 ------ packaging/nix/README.md | 8 +------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index a89f462a5..1651bbaf7 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/packaging/nix/README.md b/packaging/nix/README.md index fe7f0546f..32b7ca44e 100644 --- a/packaging/nix/README.md +++ b/packaging/nix/README.md @@ -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 ```