Commit Graph

454 Commits

Author SHA1 Message Date
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
OTABI Tomoya
48184b2238
backintime: 1.5.2 -> 1.5.3 (#355671) 2024-11-22 09:51:43 +09:00
Sandro Jäckel
e856ffbbb7
rclone: 1.68.1 -> 1.68.2
Diff: https://github.com/rclone/rclone/compare/v1.68.1...v1.68.2

Changelog: https://github.com/rclone/rclone/blob/v1.68.2/docs/content/changelog.md
2024-11-15 15:41:16 +01:00
R. Ryantm
db558c7c4a backintime: 1.5.2 -> 1.5.3 2024-11-13 13:40:13 +00:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Reno Dakota
0da0d8f508
lsyncd: update xnu include path; fix darwin 2024-10-31 07:27:07 +00:00
Fabián Heredia Montiel
34b62f7c47 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-27 16:10:56 -06:00
Andrew Kvalheim
a9a25431c3 rrsync: correct meta.mainProgram
rrsync.meta inherits from rsync.meta, so #248417 had the effect of
setting rrsync.meta.mainProgram to "rsync", which doesn’t exist:

    /nix/store/…-rrsync-3.3.0/bin/rsync: No such file or directory

Re #298509
2024-10-27 22:22:18 +01:00
github-actions[bot]
bbea34947c
Merge staging-next into staging 2024-10-06 06:05:02 +00:00
R. Ryantm
411239ca23 storj-uplink: 1.113.4 -> 1.114.3 2024-10-04 23:39:27 +00:00
oxalica
c7c65ef049
acd_cli: fix fuse path 2024-09-30 15:26:49 -04:00
R. Ryantm
359d035405 rclone: 1.68.0 -> 1.68.1 2024-09-25 09:28:59 +00:00
Nick Cao
2fb0e017bd
storj-uplink: 1.111.4 -> 1.113.4 (#343615) 2024-09-24 18:37:47 -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
R. Ryantm
523e5df514 storj-uplink: 1.111.4 -> 1.113.4 2024-09-21 23:28:17 +00:00
R. Ryantm
39930dc3d9 storj-uplink: 1.110.3 -> 1.111.4 2024-09-09 16:32:05 +00:00
R. Ryantm
5108e4faa0 rclone: 1.67.0 -> 1.68.0 2024-09-09 02:36:30 +00:00
Peder Bergebakken Sundt
94df02c3a1
backintime: 1.4.3 -> 1.5.2 (#335738) 2024-09-05 11:33:48 -04:00
Thiago Kenji Okada
a91396614d
onedrive: 2.4.25 -> 2.5.0-rc3 (#337370) 2024-08-30 15:03:30 +01:00
Sandro
3aa37d9998
rclone: stop using LD_LIBRARY_PATH for fuse library and match version… (#337474) 2024-08-28 18:07:59 +02:00
Anderson Torres
3584894b48 onedrive: migrate to by-name 2024-08-28 11:56:55 -03:00
R. Ryantm
094dcc1a28 wdt: 1.27.1612021-unstable-2024-08-14 -> 1.27.1612021-unstable-2024-08-22 2024-08-27 07:14:29 +00:00
Sandro Jäckel
4589e6d02c
rclone: stop using LD_LIBRARY_PATH for fuse library and match version with buildInputs, misc cleanup 2024-08-26 15:40:22 +02:00
Nick Cao
0e5f260520
Merge pull request #336196 from r-ryantm/auto-update/wdt
wdt: 1.27.1612021-unstable-2024-06-26 -> 1.27.1612021-unstable-2024-08-14
2024-08-20 22:10:26 -04:00
R. Ryantm
9077add27c wdt: 1.27.1612021-unstable-2024-06-26 -> 1.27.1612021-unstable-2024-08-14 2024-08-20 23:32:18 +00:00
R. Ryantm
568b0cfe1b storj-uplink: 1.109.2 -> 1.110.3 2024-08-19 17:21:03 +00:00
Stephen Huan
162dd80fe9
backintime: fix backintime-askpass 2024-08-18 21:15:34 -04:00
Stephen Huan
c85528c1ac
backintime: 1.4.3 -> 1.5.2 2024-08-18 21:15:33 -04:00
Stephen Huan
7e0e927e85
backintime: use --replace-fail and set mainProgram 2024-08-18 21:15:29 -04:00
R. Ryantm
85ea3bb583 storj-uplink: 1.108.3 -> 1.109.2 2024-08-10 00:08:08 +00:00
R. Ryantm
7a9c76b925 storj-uplink: 1.108.1 -> 1.108.3 2024-07-30 01:29:18 +00:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
Jack Leightcap
6ae7ec0b5f
lcsync: 0.3.0 -> 0.3.1
Signed-off-by: Jack Leightcap <jack@leightcap.com>
2024-07-23 15:08:16 -04:00
Vladimír Čunát
3271e61066
Merge #322012: rsync: fix missing ipv6 support (again)
...into staging
2024-07-20 09:32:49 +02:00
Sandro
dd91b844ff
Merge pull request #312929 from SuperSandro2000/freebsd-minimal3/rsync
rsync: use enableFeature
2024-07-11 09:44:11 +02:00
Sandro Jäckel
162c184b62
rsync: use enableFeature
as suggested in https://github.com/NixOS/nixpkgs/pull/311785#pullrequestreview-2057265166
2024-07-10 16:43:54 +02:00
R. Ryantm
a88eaa6e9c storj-uplink: 1.107.2 -> 1.108.1 2024-07-08 16:19:25 +00:00
Weijia Wang
e9e138083f
Merge pull request #321630 from r-ryantm/auto-update/celeste
celeste: 0.8.1 -> 0.8.3
2024-07-02 15:33:21 +02:00
Weijia Wang
2d61beba37 celeste: fix build on darwin 2024-07-02 10:58:25 +02:00
Aleksana
3101e812f3
Merge pull request #322729 from r-ryantm/auto-update/storj-uplink
storj-uplink: 1.105.2 -> 1.107.2
2024-06-28 11:45:23 +08:00
R. Ryantm
00f383408b celeste: 0.8.1 -> 0.8.3 2024-06-28 00:16:39 +00:00
R. Ryantm
bad11c57e5 wdt: 1.27.1612021-unstable-2024-05-21 -> 1.27.1612021-unstable-2024-06-26 2024-06-27 21:05:55 +00:00
R. Ryantm
c70e32a2af storj-uplink: 1.105.2 -> 1.107.2 2024-06-26 19:54:58 +00:00
Ivan Babrou
df5bf2f5f0 rsync: fix missing ipv6 support (again)
The patch was removed in 21604e8d2b despite not being included
in rsync v3.3.0, which broke IPv6 on at least darwin again.
2024-06-23 10:48:56 -07:00
Ben Siraphob
8222aa9278
Merge pull request #315183 from jopejoe1/fix-pname
treewide: replace name with pname
2024-06-16 12:34:01 +00:00
R. Ryantm
a994247fa3 rclone: 1.66.0 -> 1.67.0 2024-06-15 02:53:24 +00:00
Alyssa Ross
3df6bb2c85
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/applications/blockchains/polkadot/default.nix
2024-06-09 22:47:12 +01:00
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
jopejoe1
3a0306c622 lcsync: use pname instead of name 2024-06-05 20:42:10 +02:00
Vladimír Čunát
5804775d03
Merge branch 'staging' into staging-next 2024-05-31 07:30:41 +02:00