Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

bottles: fix GStreamer on 32 bit apps Because of the gst_all_1 input, 64 bit GStreamer was sneaking into the 32 bit libs.

Basically:
```nix
{ buildFHSEnv
, gst_all_1 # Because of this input...
}:
buildFHSEnv {
multiPkgs = pkgs: with pkgs; {
# This is both 32 bit and 64 bit
hello

# ...this is target arch only (bcause the `with pkgs;` doesn't apply in this case)
gst_all_1.gst-plugins-base
};
}
```

This commit removes the `gst_all_1` input to correct that.

Also removes setting `GST_PLUGIN_PATH`, as it doesn't seem necessary anymore.
(That env is the reason why I added the `gst_all_1` input and accidentally causing the issue in the first place. Ugh...)

Closes #207641.

-5
-5
pkgs/applications/misc/bottles/fhsenv.nix
··· 1 { buildFHSEnv 2 , symlinkJoin 3 , bottles-unwrapped 4 - , gst_all_1 5 , extraPkgs ? pkgs: [ ] 6 , extraLibraries ? pkgs: [ ] 7 }: ··· 92 zlib # Freetype 93 ] ++ xorgDeps pkgs 94 ++ extraLibraries pkgs; 95 - 96 - profile = '' 97 - export GST_PLUGIN_PATH=/usr/lib32/gstreamer-1.0:/usr/lib64/gstreamer-1.0 98 - ''; 99 }; 100 in 101 symlinkJoin {
··· 1 { buildFHSEnv 2 , symlinkJoin 3 , bottles-unwrapped 4 , extraPkgs ? pkgs: [ ] 5 , extraLibraries ? pkgs: [ ] 6 }: ··· 91 zlib # Freetype 92 ] ++ xorgDeps pkgs 93 ++ extraLibraries pkgs; 94 }; 95 in 96 symlinkJoin {