flake: drop legacy flake outputs

This commit is contained in:
Jörg Thalheim 2023-05-23 15:39:37 +02:00
parent f48be552e6
commit f59840c4c2

View file

@ -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;
};
}