From d814c395842bcea65e60c76fb77b022746eb5bc0 Mon Sep 17 00:00:00 2001 From: Danila Danko Date: Thu, 11 Jan 2024 11:58:12 +0300 Subject: [PATCH] fix: restore legacyPackages 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 =