Commit Graph

175 Commits

Author SHA1 Message Date
Moraxyc
995db3f29a
send: init at 3.4.23 2024-10-26 13:37:20 +08:00
R. Ryantm
62bd0f25e3 sendme: 0.17.0 -> 0.18.0 2024-10-22 23:56:08 +00:00
Sefa Eyeoglu
30923b301e
seq-cli: init at 2024.3.922 (#348595) 2024-10-20 12:09:15 +02:00
Anderson Torres
ec2b16f5ac setconf: migrate to by-name 2024-10-15 21:52:05 +02:00
hauskens
daf88706ec
seq-cli: init at 2024.3.922 2024-10-14 20:38:59 +02:00
Guillaume Girol
36ea34c187
seabios refactors (#342692) 2024-10-14 10:59:18 +02:00
github-actions[bot]
b1bc4ea2b5
Merge master into staging-next 2024-10-09 00:14:24 +00:00
Nick Cao
aa152942d4
sesh: 2.4.0 -> 2.5.0 (#347154) 2024-10-08 15:41:53 -04: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
R. Ryantm
417cb42863 sesh: 2.4.0 -> 2.5.0 2024-10-07 19:11:45 +00:00
Sandro Jäckel
14bddce7b0
setup-envtest: 0.18.2 -> 0.19.0 2024-10-07 17:17:21 +02:00
github-actions[bot]
ab0e8e5be7
Merge master into staging-next 2024-10-07 00:14:55 +00:00
R. Ryantm
567c3d53bd seilfahrt: 1.0.2 -> 2.0.0 2024-10-06 14:51:58 +00:00
github-actions[bot]
7dc1e4239b
Merge master into staging-next 2024-10-06 06:04:33 +00:00
h7x4
5efce4fb20
seilfahrt: init at 1.0.2 (#283819) 2024-10-06 03:41:14 +02:00
github-actions[bot]
ff851b037d
Merge master into staging-next 2024-10-06 00:15:37 +00:00
mesflit
a90e00f1ef
searxng: 0-unstable-2024-06-19 -> 0-unstable-2024-10-05 (#346687)
Update package.nix
2024-10-05 21:32:40 +02:00
github-actions[bot]
579054c806
Merge master into staging-next 2024-10-04 00:14:14 +00:00
Anderson Torres
dd122c58b1 seabios: passthru attribute firmware
So that the caller can pick the exact location of the resulting BIOS.
2024-10-02 20:03:35 -03:00
Anderson Torres
525eebaa3d seabios: new parameter ___build-type
It can assume the values "coreboot", "csm" and "qemu".

The triple-underscored kebab-cased format is a poor man's mitigation for the
problem of unexpected shadowing.
2024-10-02 19:38:11 -03:00
Anderson Torres
b4e763282a seabios: use outputDoc 2024-10-02 18:59:19 -03:00
Anderson Torres
a2f33a4b89 seabios: nixfmt-rfc-style 2024-10-02 18:59:19 -03:00
Bruno Bigras
b72173bea6 sendme: 0.16.0 -> 0.17.0 2024-10-01 23:52:42 -04:00
K900
3f7da3dfa9 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-01 08:44:24 +03:00
h7x4
636185e25a
seafile: 10.0.1 -> 11.0.12 (#318727) 2024-09-30 23:53:02 +02:00
Fabián Heredia Montiel
d67a90a413 seahorse: condition gcc_14 specific -Wno-error flags 2024-09-29 12:10:33 -06:00
melvyn
073099d0f7
nixos/seafile: add persistent user, configurable storage path, gc service 2024-09-28 19:09:58 -04:00
melvyn
90e07d3e55
seahub: 10.0.1 -> 11.0.12 2024-09-28 18:02:20 -04:00
melvyn
e6e65f022c
seafile-server: 10.0.1 -> 11.0.12 2024-09-28 18:02:19 -04:00
github-actions[bot]
8693fc15c4
Merge master into staging-next 2024-09-28 18:04:13 +00:00
R. Ryantm
22e1d617ea sesh: 2.2.0 -> 2.4.0 2024-09-28 04:41:50 +00:00
K900
a9128ce2f2 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-25 21:07:19 +03:00
Rémi NICOLE
92b8452095
sequoia-sq: 0.37.0 -> 0.38.0 (#343087) 2024-09-25 09:02:42 +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
github-actions[bot]
33e2cbc61f
Merge staging-next into staging 2024-09-20 12:05:56 +00:00
supinie
75d956842c servo: init at 0-unstable-2024-09-09 2024-09-20 09:58:27 +02:00
Doron Behar
e6784a660e sequoia-sq: 0.37.0 -> 0.38.0
Diff: https://gitlab.com/sequoia-pgp/sequoia-sq/-/compare/v0.37.0...v0.38.0

Changelog: https://gitlab.com/sequoia-pgp/sequoia-sq/-/blob/v0.38.0/NEWS
2024-09-19 20:50:29 +03:00
github-actions[bot]
c6e4482b21
Merge staging-next into staging 2024-09-18 12:06:10 +00:00
R. Ryantm
ec9cf7a478 serie: 0.3.0 -> 0.4.0 2024-09-18 10:30:41 +00:00
github-actions[bot]
b638e02a58
Merge staging-next into staging 2024-09-18 00:13:59 +00:00
Nick Cao
fc5264e89b
sendme: 0.15.0 -> 0.16.0 (#342448) 2024-09-17 14:49:46 -04:00
K900
87cbfcba1c Merge remote-tracking branch 'origin/staging-next' into staging 2024-09-17 21:07:02 +03:00
R. Ryantm
2773b6af68 sesh: 2.1.0 -> 2.2.0 2024-09-17 06:02:28 +00:00
R. Ryantm
afec74011e sendme: 0.15.0 -> 0.16.0 2024-09-17 04:31:00 +00:00
github-actions[bot]
84a5c54b60
Merge staging-next into staging 2024-09-15 12:05:26 +00:00
Louis Thevenet
a1ba031cd5
see-cat: init at 0.8.1 2024-09-14 23:08:41 +02:00
Weijia Wang
c65cdc288d
{selenium-manager,python3Packages.selenium}: 4.22.0 -> 4.24.0 (#332066) 2024-09-13 01:46:27 +02:00
Fabián Heredia Montiel
a4145a81d1 treewide: add -Wno-error= due to compilation error with gcc_14 2024-09-11 01:44:17 -06:00
linsui
c078d990ee serpl: 0.1.34 -> 0.3.3 2024-09-08 22:41:37 +08:00