diff options
| author | Martino Fontana <tinozzo123@gmail.com> | 2023-08-13 12:33:44 +0200 |
|---|---|---|
| committer | Martino Fontana <tinozzo123@gmail.com> | 2023-09-21 10:21:53 +0200 |
| commit | e19d87d2ec8a6606b3cf2ceaea5553aac4aadc2c (patch) | |
| tree | fc08fec73bb04dcf4e9cbae007a118063865ccba /pkgs/development/python-modules/rangehttpserver | |
| parent | 5148520bfab61f99fd25fb9ff7bfbb50dad3c9db (diff) | |
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.
Diffstat (limited to 'pkgs/development/python-modules/rangehttpserver')
0 files changed, 0 insertions, 0 deletions
