From 9b955c05649edc08cd3114af573dd92985b43688 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Date: Tue, 16 May 2023 21:41:14 +0200 Subject: [PATCH] Specify shell.nix dependencies using "packages", not "inputsFrom" (#16514) --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 8879b0c791..752b6fcadb 100644 --- a/shell.nix +++ b/shell.nix @@ -21,7 +21,7 @@ let in pkgs.mkShell { name = "space-station-14-devshell"; buildInputs = [ pkgs.gtk3 ]; - inputsFrom = dependencies; + packages = dependencies; shellHook = '' export GLIBC_TUNABLES=glibc.rtld.dynamic_sort=1 export ROBUST_SOUNDFONT_OVERRIDE=${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2 -- 2.51.2