github-actions[bot]
c64ae284c0
Merge master into staging-next
2024-10-10 18:04:46 +00:00
Fabián Heredia Montiel
e57d26c07f
netdata: 1.47.1 -> 1.47.3 ( #346228 )
2024-10-10 10:22:40 -06:00
github-actions[bot]
fc5d8c3e7d
Merge master into staging-next
2024-10-09 06:04:53 +00:00
OTABI Tomoya
a83624d461
fio: 3.37 -> 3.38 ( #346063 )
2024-10-09 13:55:24 +09:00
github-actions[bot]
b1bc4ea2b5
Merge master into staging-next
2024-10-09 00:14:24 +00:00
José Ribeiro
fe728cc0db
zx: 8.1.8 -> 8.1.9
...
Diff: https://github.com/google/zx/compare/8.1.8...8.1.9
Changelog: https://github.com/google/zx/releases/tag/8.1.9
2024-10-07 15:22:46 +01:00
github-actions[bot]
b33aedbb4d
Merge master into staging-next
2024-10-07 12:05:43 +00:00
Thiago Kenji Okada
2977943aeb
treewide: move packages maintained by aaronjheng to by-name ( #346765 )
2024-10-07 07:38:59 +01:00
Aaron Jheng
b85511ca3c
treewide: move packages maintained by aaronjheng to by-name
2024-10-07 01:15:33 +00:00
github-actions[bot]
7ab01e096c
Merge master into staging-next
2024-10-06 18:03:58 +00:00
Nick Cao
89fd41228c
dool: 1.3.2 -> 1.3.3 ( #346069 )
2024-10-06 10:33:56 -04:00
github-actions[bot]
653bcc0ea9
Merge master into staging-next
2024-10-05 18:04:03 +00:00
R. Ryantm
7cb5c404bf
automatic-timezoned: 2.0.33 -> 2.0.34
2024-10-05 06:44:15 +00:00
github-actions[bot]
e9c8665026
Merge master into staging-next
2024-10-05 00:14:01 +00:00
Peder Bergebakken Sundt
d6ca5ed287
treewide: remove empty build inputs
...
Done with
```sh
regex='\s*(nativeBuild|build|check|nativeCheck)Inputs *= *\[ *\];'
rg "^$regex$" -l | xe sd "\n\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
```
2024-10-04 19:03:59 +02:00
Ryan Horiguchi
d0c00c62cc
netdata: 1.47.1 -> 1.47.3
2024-10-03 21:40:40 +02:00
R. Ryantm
aa8e5c1cdf
dool: 1.3.2 -> 1.3.3
2024-10-03 04:26:30 +00:00
R. Ryantm
f7322be395
fio: 3.37 -> 3.38
2024-10-03 04:02:01 +00:00
github-actions[bot]
5810844b9c
Merge master into staging-next
2024-10-02 00:14:22 +00:00
Weijia Wang
aa6ca19e53
openseachest: 24.08 -> 24.08.1 ( #344577 )
2024-10-01 22:43:53 +02:00
K900
b29cb6c1f9
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-30 20:23:25 +03:00
OTABI Tomoya
c7b147368c
lact: 0.5.5 -> 0.5.6 ( #343843 )
2024-09-30 22:08:46 +09:00
github-actions[bot]
9badc90a26
Merge master into staging-next
2024-09-28 00:13:56 +00:00
Nick Cao
2d6683a9c2
automatic-timezoned: 2.0.32 -> 2.0.33 ( #344804 )
2024-09-27 14:52:48 -04:00
R. Ryantm
f1a96b5bd6
nsc: 2.8.9 -> 2.9.0
2024-09-27 05:00:37 +00:00
R. Ryantm
27e58c943f
automatic-timezoned: 2.0.32 -> 2.0.33
2024-09-27 04:54:54 +00:00
R. Ryantm
c076e3418c
openseachest: 24.08 -> 24.08.1
2024-09-26 04:54:52 +00:00
Artturin
f0e657f3b1
Merge branch 'master' into staging-next
2024-09-25 06:05:01 +03: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
R. Ryantm
1f42ffa2b4
lact: 0.5.5 -> 0.5.6
2024-09-23 01:22:02 +00:00
github-actions[bot]
3625d99bb2
Merge master into staging-next
2024-09-23 00:14:30 +00:00
R. Ryantm
27164432bc
btop: 1.3.2 -> 1.4.0
2024-09-22 12:27:43 +00:00
github-actions[bot]
754402a237
Merge staging-next into staging
2024-09-21 00:13:41 +00:00
K900
d8a54461fc
Merge remote-tracking branch 'origin/staging-next' into staging
2024-09-20 07:27:56 +03:00
José Ribeiro
0997fa43d1
zx: 8.1.7 -> 8.1.8
...
Diff: https://github.com/google/zx/compare/8.1.7...8.1.8
Changelog: https://github.com/google/zx/releases/tag/8.1.8
2024-09-20 02:43:09 +01:00
Bjørn Forsman
b03e47330b
smartmontools: build with systemdLibs on linux ( #342407 )
2024-09-19 20:49:26 +02:00
github-actions[bot]
f8ad48a5a2
Merge staging-next into staging
2024-09-19 00:14:04 +00:00
Fabian Affolter
849b29a665
mediawriter: 5.1.2 -> 5.1.3 ( #342799 )
2024-09-19 00:38:46 +02:00
github-actions[bot]
71d46fbcdf
Merge staging-next into staging
2024-09-18 18:04:48 +00:00
R. Ryantm
8bccb662d4
mediawriter: 5.1.2 -> 5.1.3
2024-09-18 13:18:07 +00:00
Nick Cao
c61b20f267
zx: 8.1.6 -> 8.1.7 ( #342616 )
2024-09-18 08:18:38 -04:00
github-actions[bot]
81d645b6a9
Merge staging-next into staging
2024-09-18 06:05:20 +00:00
Muhammad Falak R Wani
25c916d554
bfs: 3.1.3 -> 4.0.2
...
Diff: https://github.com/tavianator/bfs/compare/3.1.3...4.0.2
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-09-18 09:07:28 +05:30
github-actions[bot]
b638e02a58
Merge staging-next into staging
2024-09-18 00:13:59 +00:00
Nick Cao
3dd3008e4f
nsc: 2.8.8 -> 2.8.9 ( #342066 )
2024-09-17 15:52:43 -04:00
José Ribeiro
3863ea9ed8
zx: 8.1.6 -> 8.1.7
...
Diff: https://github.com/google/zx/compare/8.1.6...8.1.7
Changelog: https://github.com/google/zx/releases/tag/8.1.7
2024-09-17 20:20:03 +01:00
h7x4
94bc565cec
smartmontools: run nixfmt
2024-09-16 23:28:29 +02:00
h7x4
d447b5366e
smartmontools: build with systemdLibs on linux
2024-09-16 23:20:43 +02:00
github-actions[bot]
7aea2e99a8
Merge staging-next into staging
2024-09-16 00:14:57 +00:00
Jörg Thalheim
ba74d07245
treewide: remove a bunch of unmaintained and old packages ( #341837 )
2024-09-16 00:00:19 +02:00