Commit Graph

51 Commits

Author SHA1 Message Date
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Martino Fontana
3f25b9d193 bottles: 51.9 -> 51.11
Diff: https://github.com/bottlesdevs/bottles/compare/51.9...51.11
2024-03-10 22:41:07 +01:00
Martino Fontana
dd2277f8b2 bottles: move GStreamer deps in a separate variable 2023-09-21 10:22:00 +02:00
Martino Fontana
e19d87d2ec 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.
2023-09-21 10:21:53 +02:00
Martino Fontana
bd3ea9f72a bottles: 51.6 -> 51.9
Diff: https://github.com/bottlesdevs/bottles/compare/51.6...51.9
2023-08-23 11:56:40 +02:00
Austin Horstman
f61284a19f
treewide: add meta.mainProgram to misc 2023-08-04 14:10:05 -05:00
Atemu
4194dc3819 bottles: declare need for multiArch explicitly 2023-07-07 21:33:04 +02:00
Martino Fontana
8bc1db0a0d bottles: 51.5 -> 51.6 2023-05-21 16:05:31 +02:00
Martino Fontana
a6338cdabc bottles: backport GTK 4.10 fix
Fixes #226766
2023-04-20 14:53:38 +02:00
Atemu
24a513a87c tree-wide: do not depend on buildFHSEnvBubblewrap
It's the default now.
2023-04-16 10:15:15 +02:00
Atemu
f63a12f296 tree-wide: buildFHSUserEnv -> buildFHSEnv 2023-04-16 10:15:13 +02:00
Martino Fontana
55f85c555d bottles: 50.2 -> 51.5 2023-02-24 09:58:22 +01:00
Martino Fontana
ece21d5730 bottles: 2022.12.14.1 -> 50.2 2023-01-21 14:41:19 +01:00
Martino Fontana
ed28b99cd3 bottles: 2022.12.14 -> 2022.12.14.1, fix GStreamer 2022-12-20 14:55:24 +01:00
Martino Fontana
3b9ab25c14 bottles: 2022.11.14 -> 2022.12.14 2022-12-14 18:57:59 +01:00
Martino Fontana
0e59802462 bottles: wrap in FHS 2022-12-08 19:36:52 +01:00
Martino Fontana
f560c82d84 bottles: 2022.10.14.1 -> 2022.11.14, fix vulkan_icd.patch 2022-12-08 19:36:52 +01:00
Martino Fontana
d155128b53 bottles: 2022.5.28-trento-3 -> 2022.10.14.1 2022-11-02 00:08:21 +01:00
José Romildo
01510c7ff3 treewide: no need to pass pname, version and attrPath to update scripts based on generic-updater 2022-09-27 23:41:53 -03:00
Dmitriy
10df9d2ab8 bottles: add possibility to choose wine version 2022-07-27 00:55:38 +03:00
Dmitriy
38a6b94469 bottles: return autoupdater 2022-07-17 12:05:58 +03:00
ajs124
92531d8585 maintainers: remove bloomvdomino
github account deleted
2022-06-29 00:52:12 +02:00
Sandro Jäckel
41be2855f8
bottles: 2022.5.28-trento-2 -> 2022.5.28-trento-3 2022-05-29 22:10:00 +02:00
Sandro Jäckel
7530fc79a2
bottles: 2022.5.28-trento-1 -> 2022.5.28-trento-2 2022-05-28 22:10:29 +02:00
Sandro Jäckel
1428745f91
bottles: 2022.5.28-trento -> 2022.5.28-trento-1 2022-05-28 21:42:28 +02:00
Sandro Jäckel
aea37b0a99
bottles: 2022.5.14-trento-1 -> 2022.5.28-trento 2022-05-28 17:01:07 +02:00
Sandro Jäckel
de7fd4e7f0
bottles: 2022.5.2-trento-2 -> 2022.5.14-trento-1 2022-05-17 16:25:07 +02:00
Sandro Jäckel
e5ce505f1a
bottles: 2022.5.2-trento -> 2022.5.2-trento-2 2022-05-08 22:36:59 +02:00
Sandro Jäckel
2c83b54928
bottles: 2022.4.28-trento -> 2022.5.2-trento 2022-05-03 01:20:19 +02:00
Sandro Jäckel
42c6fd5869
bottles: 2022.4.14-trento-1 -> 2022.4.28-trento 2022-04-28 01:59:44 +02:00
Sandro Jäckel
b587fa2897
bottles: move patching from preConfigure into postPatch 2022-04-20 20:17:38 +02:00
Sandro Jäckel
d002c9f58f
bottles: remove custom updater
default fetchFromGitHub works like a charm
2022-04-20 20:17:36 +02:00
R. Ryantm
4f7de0169b bottles: 2022.4.14-trento -> 2022.4.14-trento-1 2022-04-16 01:27:56 +00:00
R. Ryantm
d2b6c105b7 bottles: 2022.3.28-trento-1 -> 2022.4.14-trento 2022-04-14 01:31:38 +00:00
R. Ryantm
43a87e10f5 bottles: 2022.3.14-trento-3 -> 2022.3.28-trento-1 2022-04-03 19:25:59 +00:00
Pascal Bach
830a13399a
Merge pull request #164136 from psydvl/bottles
`bottles`: `2022.2.28-trento-1` -> `2022.3.14-trento-3` & add autoupdate
2022-03-21 22:37:51 +01:00
Benjamin Asbach
e615751671 bottles: added gnutls to extraLibraries to enable encryption support
see #164997
2022-03-20 18:27:19 +01:00
Dmitriy
d37f993770 bottles: 2022.2.28-trento-1 -> 2022.3.14-trento-3 2022-03-14 20:11:57 +03:00
Dmitriy
498e4973b3 bottles: added autoupdate 2022-03-14 20:11:57 +03:00
Dmitriy
cf2a25f9d2 bottles: 2022.2.14-trento -> 2022.2.28-trento-1 2022-03-01 00:59:20 +03:00
Dmitriy
8d2fa50ec9 Add psydvl to maintainers list
Add psydvl to bottles package maintainers
2022-02-17 21:44:47 +03:00
Dmitriy
eb1ed6553a bottles: 2021.12.28-treviso -> 2022.2.14-trento
`libunwind` and `libusb1` added to steam.run because program default wine runner `caffe` require it
2022-02-17 21:44:35 +03:00
Dmitriy
57b0e8d413 bottles: 2021.7.28-treviso-2 -> 2021.12.28-treviso 2021-12-28 03:11:28 +03:00
Benjamin Asbach
cb41c9c23e bottles: added cabextract and wineWowPacakge.minimal
> cabextract is needed to install wants using the dependencies menu.
The wine packages are needed when switching dxvk or vkd3d in a bottle.

Based on review by mschuwalow
2021-08-18 00:36:35 -06:00
Benjamin Asbach
ecb3c84196 bottles: Ensure wine is run inside steam-run 2021-08-15 18:10:14 -06:00
Benjamin Asbach
b14a4ca002 bottles: Add pciutils as bottles uses it to determine the graphics environment 2021-08-15 18:10:14 -06:00
Benjamin Asbach
c599d0e175 bottles: Added xdg-utils to enable browsing wine prefix files 2021-08-15 18:10:13 -06:00
Benjamin Asbach
4d45fe2991 bottles: 2021.7.14-treviso -> 2021.7.28-treviso-2 2021-08-15 18:10:13 -06:00
QuantMint
67ea2e1044
bottles: 3.1.6 -> 2021.7.14-treviso (#130543) 2021-07-23 14:30:51 +02:00
SCOTT-HAMILTON
37b3341048 bottles: init at 2.1.1 -> 3.1.6 2021-04-26 15:26:26 +02:00