From f59840c4c2bcb7b31c85e5639770a25295bbd66c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 23 May 2023 15:39:37 +0200 Subject: [PATCH] flake: drop legacy flake outputs --- flake.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/flake.nix b/flake.nix index d948e21..06cd3fd 100644 --- a/flake.nix +++ b/flake.nix @@ -11,10 +11,7 @@ default = pkgs.callPackage ./default.nix { }; test-runner = pkgs.callPackage ./run-tests.nix {}; }; - defaultPackage = self.packages.${system}.default; devShells.default = pkgs.callPackage ./shell.nix { }; - # FIXME backward compat, drop soon - devShell = self.devShells.default; apps.test-runner = { type = "app"; program = "${self.packages.${system}.test-runner}"; @@ -27,7 +24,5 @@ path = ./templates/flake; description = "nix flake new -t github:Mic92/nix-direnv ."; }; - # FIXME backward compat, drop soon - defaultTemplate = self.templates.default; }; }