From 41108ea7d1cbc969b6d646b6a2f23c52f2cb2c7c Mon Sep 17 00:00:00 2001 From: Danila Danko <48378098+deemp@users.noreply.github.com> Date: Thu, 11 Jan 2024 23:27:30 +0300 Subject: [PATCH] fix: restore legacyPackages (#293) address https://github.com/numtide/devshell/pull/289#issuecomment-1886561809 --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 2c409028..eb28fe0f 100644 --- a/flake.nix +++ b/flake.nix @@ -40,6 +40,12 @@ devShells.default = devshell.fromTOML ./devshell.toml; + legacyPackages = import inputs.self { + inherit system; + inputs = null; + nixpkgs = pkgs; + }; + apps.default = devShells.default.flakeApp; checks =