Commit Graph

4782 Commits

Author SHA1 Message Date
github-actions[bot]
910adea78f
Merge staging-next into staging 2024-10-01 06:05:25 +00:00
K900
3f7da3dfa9 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-01 08:44:24 +03:00
Peder Bergebakken Sundt
51ab9a6b25
uwc: 1.0.5 -> 1.0.7, fetch from GitHub, disable tests (#345069) 2024-10-01 01:41:34 +02:00
h7x4
ed96650379
skkDictionaries: split up skk-dicts (#266144) 2024-10-01 00:55:16 +02:00
h7x4
f7b7f20f65
fanficfare: 4.37.0 -> 4.38.0 (#345023) 2024-09-30 22:52:09 +02:00
github-actions[bot]
4a1f411e5d
Merge staging-next into staging 2024-09-30 18:05:14 +00:00
K900
b29cb6c1f9 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-30 20:23:25 +03:00
midchildan
c3d1c9cdf5
skkDictionaries: replace skk-dicts 2024-10-01 01:24:28 +09:00
Nick Cao
c878a7799c
riffdiff: 3.3.0 -> 3.3.1 (#345493) 2024-09-30 09:41:36 -04:00
OTABI Tomoya
d60069d177
jotdown: 0.5.0 -> 0.6.0 (#343721) 2024-09-30 22:39:30 +09:00
github-actions[bot]
50b103c35a
Merge staging-next into staging 2024-09-30 12:06:12 +00:00
github-actions[bot]
d7d44ff498
Merge master into staging-next 2024-09-30 12:05:43 +00:00
R. Ryantm
12703cb03c riffdiff: 3.3.0 -> 3.3.1 2024-09-30 11:53:49 +00:00
R. Ryantm
ca09d7f252 mdcat: 2.4.0 -> 2.5.0 2024-09-30 02:51:45 +00:00
Yueh-Shun Li
935b96082f uwc: disable tests
The test failures seem to be caused by the upstream.
2024-09-29 12:46:52 +08:00
Yueh-Shun Li
7455c80a5f uwc: 1.0.5 -> 1.0.7 and fetch from GitHub 2024-09-29 12:46:46 +08:00
R. Ryantm
d6c5ad2634 fanficfare: 4.37.0 -> 4.38.0 2024-09-28 05:00:04 +00:00
github-actions[bot]
c101f2dc94
Merge staging-next into staging 2024-09-27 18:04:55 +00:00
github-actions[bot]
911b856128
Merge master into staging-next 2024-09-27 18:04:26 +00:00
Paul Meyer
6787161291 vale{,Styles}: move to by-name
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-27 13:54:09 +02:00
Paul Meyer
df238ebe1d valeStyles: cleanup, format, refactor
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-27 13:49:56 +02:00
Paul Meyer
53393cc14c vale: cleanup, format, refactor
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-27 13:49:41 +02:00
github-actions[bot]
c5d56bc391
Merge staging-next into staging 2024-09-26 18:05:01 +00:00
github-actions[bot]
c8c18095f9
Merge master into staging-next 2024-09-26 18:04:33 +00:00
Alistair Bill
ad93bf2f14 treewide: remove maintainer alibabzo 2024-09-25 22:39:13 +01:00
Artturin
06519058fd Merge branch 'staging-next' into staging 2024-09-25 06:14:50 +03:00
Artturin
f0e657f3b1 Merge branch 'master' into staging-next 2024-09-25 06:05:01 +03:00
github-actions[bot]
e34a522374
Merge staging-next into staging 2024-09-25 00:14:47 +00:00
Philip Taron
75f804420d
treewide: use finalAttrs.finalPackage in testers.testVersion (#342431) 2024-09-24 15:56:53 -07:00
Philip Taron
6f3fcaa71b
gawk: 5.2.2 -> 5.3.1 (#344008) 2024-09-24 15:29:00 -07:00
Nick Cao
016f0de8b3
markdownlint-cli: 0.41.0 -> 0.42.0 (#344224) 2024-09-24 18:01:20 -04:00
Peder Bergebakken Sundt
1cbae1f817 crowdin-cli: use finalAttrs.finalPackage 2024-09-24 23:28:51 +02: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
Lin Jian
cd039ce1ae
opencc: use system rapidjson to fix gcc 14 error (#344004) 2024-09-25 02:26:28 +08:00
R. Ryantm
34c68eb443 markdownlint-cli: 0.41.0 -> 0.42.0 2024-09-24 14:28:56 +00:00
github-actions[bot]
bcd5388d39
Merge master into staging-next 2024-09-24 12:05:12 +00:00
Jörg Thalheim
88ae0a7191 gnugrep: fix eval on windows 2024-09-24 10:59:23 +02:00
github-actions[bot]
9a6f63ebed
Merge master into staging-next 2024-09-23 18:04:34 +00:00
Lin Jian
42960d743a
opencc: add passthru.updateScript 2024-09-24 01:34:09 +08:00
Lin Jian
36fed72b3b
opencc: use system rapidjson to fix gcc 14 error
The bundled rapidjson is not new enough and causes compilation
error[1] in gcc 14.

[1]: https://hydra.nixos.org/build/273250179/log
2024-09-24 01:34:07 +08:00
Simon Hauser
8cd3989e4d
gawk: 5.2.2 -> 5.3.1
Changelog:
- https://lists.gnu.org/archive/html/info-gnu/2023-11/msg00000.html
- https://mail.gnu.org/archive/html/info-gnu/2024-09/msg00008.html
2024-09-23 19:04:39 +02:00
Damien Cassou
d266adc5a7
crowdin-cli: 4.1.2 -> 4.2.0 (#343957) 2024-09-23 17:22:35 +02:00
R. Ryantm
ce8ecb30b1 crowdin-cli: 4.1.2 -> 4.2.0 2024-09-23 13:10:26 +00:00
R. Ryantm
6e4d0242b0 mdbook-mermaid: 0.13.0 -> 0.14.0 2024-09-23 10:04:20 +00:00
Jörg Thalheim
7d751654ec
Merge branch 'master' into staging-next 2024-09-22 15:51:19 +02:00
Nick Cao
1f836cd601
riffdiff: 3.2.1 -> 3.3.0 (#343529) 2024-09-22 09:31:53 -04:00
R. Ryantm
2831842ad1 jotdown: 0.5.0 -> 0.6.0 2024-09-22 13:18:03 +00:00
github-actions[bot]
f2c1ad7ad5
Merge master into staging-next 2024-09-21 18:03:54 +00:00
R. Ryantm
9ed482813f riffdiff: 3.2.1 -> 3.3.0 2024-09-21 15:39:51 +00:00
Tristan Ross
3fdf8a8f68
sourceHighlight: fix tests with llvm 2024-09-20 18:24:26 -07:00