Commit Graph

2659 Commits

Author SHA1 Message Date
github-actions[bot]
f201fe5883
Merge staging-next into staging 2024-10-12 12:05:39 +00:00
github-actions[bot]
4433a315bd
Merge master into staging-next 2024-10-12 12:05:08 +00:00
Fabián Heredia Montiel
ccec93c1c7 treewide: replace webkitgtk to webkitgtk_4_0
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix

webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
github-actions[bot]
4b355c2828
Merge staging-next into staging 2024-10-08 18:04:57 +00:00
Vladimír Čunát
a0c9222e11
Merge branch 'master' into staging-next
(a bit older master for now, due to a conflict in dhcpcd service)
2024-10-08 14:59:47 +02:00
Raghav Sood
509b099fd4
flyctl: 0.3.10 -> 0.3.15 (#347165) 2024-10-08 16:44:30 +08:00
Emily
85faae5e12 Merge staging-next into staging 2024-10-08 01:24:14 +01:00
Emily
df769e85f3 Merge master into staging-next 2024-10-08 01:23:55 +01:00
github-actions[bot]
5a96e99128
Merge staging-next into staging 2024-10-08 00:14:03 +00:00
R. Ryantm
813369f502 flyctl: 0.3.10 -> 0.3.15 2024-10-07 20:05:38 +00:00
R. Ryantm
5edc9a24b0 grails: 6.1.2 -> 6.2.1 2024-10-07 21:48:04 +02:00
K900
0846895fc6 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-07 21:08:55 +03:00
Philip Taron
72c938e77a
playwright-driver: fix eval on Nix 2.3 2024-10-07 08:55:30 -07:00
K900
84fce7e588 Merge remote-tracking branch 'origin/staging-next' into staging 2024-10-06 21:11:05 +03:00
Randy Eckenrode
887a9ba50a
nodejs: suppress failing test on x86_64-darwin 2024-10-06 09:49:21 -04:00
github-actions[bot]
483deb3a04
Merge staging-next into staging 2024-10-04 12:06:05 +00:00
Antoine du Hamel
80cb07c14e nodejs_22: 22.8.0 -> 22.9.0 2024-10-04 10:43:42 +02:00
Antoine du Hamel
0789f53499 nodejs_20: 20.17.0 -> 20.18.0 2024-10-03 21:53:17 +02:00
K900
b29cb6c1f9 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-30 20:23:25 +03:00
R. Ryantm
fdf1280a92 flyctl: 0.3.6 -> 0.3.10 2024-09-29 22:57:18 +00:00
github-actions[bot]
080ddac139
Merge master into staging-next 2024-09-29 00:15:45 +00:00
Matthieu C.
174479d040 playwright-driver.browsers: expose raw fontconfig file 2024-09-28 22:35:28 +02:00
github-actions[bot]
9badc90a26
Merge master into staging-next 2024-09-28 00:13:56 +00:00
Artturin
976e5387d2 treewide: Fix error: makeWrapper/makeShellWrapper must be in nativeBuildInputs
On cross
2024-09-27 18:48:26 +03:00
Emily
fd671be017
nodejs: skip some TLS tests on 20.x and 18.x (#344086) 2024-09-26 16:04:21 +01:00
github-actions[bot]
57b5c92d8e
Merge master into staging-next 2024-09-26 00:13:55 +00:00
Antoine du Hamel
e005e5d99f nodejs: add missing patches and skip some TLS tests on 20.x and 18.x
Co-authored-by: Fabián Heredia Montiel <fabianhjr@protonmail.com>
2024-09-26 00:00:56 +02:00
Austin Horstman
cadf53ea4d deno: move to by-name 2024-09-25 22:05:11 +02:00
Austin Horstman
8a7af3824a deno: format 2024-09-25 22:05:11 +02:00
Fabián Heredia Montiel
a1dfa5ac0d
cypress: add support for aarch64 on darwin (#342798) 2024-09-25 12:42:09 -06:00
kolaente
7f4dd46fab
cypress: add support for aarch64 on darwin 2024-09-25 17:23:30 +02:00
Artturin
f0e657f3b1 Merge branch 'master' into staging-next 2024-09-25 06:05:01 +03:00
Nick Cao
210a5474f2
insomnia: 9.0.0 -> 10.0.0 (#344201) 2024-09-24 21:48:02 -04:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
eymeric
2aea8cf19d
insomnia: 9.0.0 -> 10.0.0 2024-09-24 14:35:13 +02:00
Antoine du Hamel
59777cc547 nodejs: fix tests for OpenSSL 3.2 2024-09-22 21:26:13 +02:00
github-actions[bot]
94770996ae
Merge master into staging-next 2024-09-22 00:15:32 +00:00
Emily
64efdfcc37
nodejs: disable failing network tests (#343541) 2024-09-21 21:01:48 +01:00
Matthieu Coudron
a6df665571
Playwright: browser improvements, update (#298944) 2024-09-21 21:50:25 +02:00
Fabián Heredia Montiel
b37957f41e nodejs: disable failing network tests
https://hydra.nixos.org/build/273305124/nixlog/1
2024-09-21 11:19:06 -06:00
github-actions[bot]
754402a237
Merge staging-next into staging 2024-09-21 00:13:41 +00:00
Nick Cao
6edbe42aa0
bun: 1.1.27 -> 1.1.29 (#343120) 2024-09-20 16:32:19 -04:00
github-actions[bot]
7fc19ff961
Merge staging-next into staging 2024-09-20 18:05:01 +00:00
phaer
67b5c21b58 playwright: Use pre-built browsers, update them...
via update.sh. This lets us support playwright with browsers
other than chromium on linux. Building them from source would
be one step further.
2024-09-20 14:52:35 +02:00
Weijia Wang
0cfbf76e38 bun: 1.1.27 -> 1.1.29 2024-09-20 14:04:39 +02:00
R. Ryantm
b1190a7ccc flyctl: 0.3.1 -> 0.3.6 2024-09-20 06:25:53 +00:00
github-actions[bot]
3aaf0938c0
Merge staging-next into staging 2024-09-17 00:12:19 +00:00
Fabián Heredia Montiel
94de233834
python312Packages.playwright: 1.46.0 -> 1.47.0 (#341696) 2024-09-16 12:26:56 -06:00
github-actions[bot]
1eb2a0e2d5
Merge staging-next into staging 2024-09-16 18:04:57 +00:00
Artturin
931494da4b
cypress: lowercase symbolic link (#341694) 2024-09-16 19:31:12 +03:00