Specify shell.nix dependencies using "packages", not "inputsFrom" (#16514)
This commit is contained in:
committed by
GitHub
parent
d064824310
commit
9b955c0564
@@ -21,7 +21,7 @@ let
|
|||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
name = "space-station-14-devshell";
|
name = "space-station-14-devshell";
|
||||||
buildInputs = [ pkgs.gtk3 ];
|
buildInputs = [ pkgs.gtk3 ];
|
||||||
inputsFrom = dependencies;
|
packages = dependencies;
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
export GLIBC_TUNABLES=glibc.rtld.dynamic_sort=1
|
export GLIBC_TUNABLES=glibc.rtld.dynamic_sort=1
|
||||||
export ROBUST_SOUNDFONT_OVERRIDE=${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2
|
export ROBUST_SOUNDFONT_OVERRIDE=${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2
|
||||||
|
|||||||
Reference in New Issue
Block a user