Commit Graph

68 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
Christina Sørensen
df46eade40
eza: 0.20.10 -> 0.20.11
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-05 12:03:09 +01:00
Ramses
69c07a1590
treewide: adopt/co-maintain some packages (#355700) 2024-12-05 09:29:28 +01:00
Nick Cao
aa05b55564
eza: use new darwin sdk pattern 2024-12-03 14:19:40 -05:00
Christina Sørensen
a5db1dd477
eza: 0.20.9 -> 0.20.10
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.10
2024-11-28 08:41:59 +01:00
Fernando Rodrigues
33cbff8371
eza: add sigmasquadron as co-maintainer
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2024-11-23 20:13:45 -03:00
Christina Sørensen
0380ef514f
eza: 0.20.8 -> 0.20.9
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.9
2024-11-21 08:16:43 +01:00
Christina Sørensen
68487f49e1
eza: 0.20.7 -> 0.20.8
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.8
2024-11-14 07:10:34 +01: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
Christina Sørensen
00c5d680a4
eza: 0.20.6 -> 0.20.7
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.7
2024-11-07 10:22:21 +01:00
Christina Sørensen
2b11a7f243
eza: 0.20.5 -> 0.20.6
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.6
2024-10-31 14:51:19 +01:00
Christina Sørensen
12a17c68e8
eza: 0.20.4 -> 0.20.5
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.5
2024-10-25 06:50:58 +02:00
Christina Sørensen
b63ca881dd
eza: 0.20.2 -> 0.20.4
Changelog: https://github.com/eza-community/eza/releases/tag/v0.20.4
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-10-18 16:08:09 +02:00
Christina Sørensen
70c1475e92
eza: 0.20.1 -> 0.20.2
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-10-09 09:50:07 +02:00
Christina Sørensen
33ee0f3955
eza: 0.20.0 -> 0.20.1
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.1
2024-10-03 08:31:11 +02:00
Christina Sørensen
3a6faa876e
eza: fix version in man page (#345185)
Copies our upstream manual generation process to nixpkgs eza.
2024-09-29 05:00:44 +02:00
Stephen Huan
57435d57f6
eza: fix version in man page 2024-09-28 15:25:59 -04:00
Christina Sørensen
9bb1ef2ca1
eza: 0.19.4 -> 0.20.0
changelog: https://github.com/eza-community/eza/releases/tag/v0.20.0
2024-09-28 07:38:46 +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
Christina Sørensen
1a5bd76f58
eza: 0.19.3 -> 0.19.4
changelog: https://github.com/eza-community/eza/releases/tag/v0.19.4
2024-09-18 16:07:37 +02:00
Christina Sørensen
d306cdffde
eza: 0.19.2 -> 0.19.3
changelog: https://github.com/eza-community/eza/releases/tag/v0.19.3
2024-09-12 07:34:25 +02:00
Christina Sørensen
fec826d5ad
eza: 0.19.1 -> 0.19.2
changelog: https://github.com/eza-community/eza/releases/tag/v0.19.2
2024-09-05 04:34:29 +02:00
Christina Sørensen
ef341c6cfa
eza: 0.19.0 -> 0.19.1
changelog: https://github.com/eza-community/eza/releases/tag/v0.19.1
2024-08-28 14:19:59 +02:00
Christina Sørensen
d6599a24f8
eza: 0.18.24 -> 0.19.0
changelog: https://github.com/eza-community/eza/releases/tag/v0.19.0
2024-08-08 06:48:25 +02:00
Christina Sørensen
72dc43c0aa
eza: 0.18.23 -> 0.18.24
changelog: https://github.com/eza-community/eza/releases/tag/v0.18.24
2024-08-03 18:10:49 +02:00
Christina Sørensen
7e805f5694
eza: 0.18.22 -> 0.18.23
Changelog: https://github.com/eza-community/eza/releases/tag/v0.18.23
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-07-25 13:30:34 +02:00
Christina Sørensen
1906abff08
eza: 0.18.21 -> 0.18.22
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-07-18 06:38:54 +02:00
Christina Sørensen
05ac3b842a
eza: 0.18.20 -> 0.18.21
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-07-01 07:00:40 +02:00
Christina Sørensen
e643fd5bba
eza: 0.18.19 -> 0.18.20
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-06-27 06:28:07 +02:00
Christina Sørensen
35f6aa9217
eza: 0.18.18 -> 0.18.19
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-06-20 07:23:57 +02:00
R. Ryantm
077d53abb4 eza: 0.18.17 -> 0.18.18 2024-06-13 14:42:36 +00: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
Christina Sørensen
841a91480f
eza: 0.18.6 -> 0.18.7
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-06-05 20:57:38 +02:00
Christina Sørensen
8360081bed
eza: 0.18.15 -> 0.18.16
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-05-16 16:44:51 +02:00
Christina Sørensen
8211a83933
eza: 0.18.14 -> 0.18.15
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-05-09 14:53:00 +02:00
Christina Sørensen
f674b11e2a
eza: 0.18.13 -> 0.18.14
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-05-02 08:28:05 +02:00
Christina Sørensen
fcd403c03b
eza: 0.18.11 -> 0.18.13
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-04-25 17:49:09 +02:00
nixpkgs-merge-bot[bot]
63ac7bec8d
Merge pull request #305314 from r-ryantm/auto-update/eza
eza: 0.18.10 -> 0.18.11
2024-04-20 05:43:46 +00:00
R. Ryantm
fad5531d02 eza: 0.18.10 -> 0.18.11 2024-04-19 13:55:44 +00:00
Weijia Wang
f3a1652b09 Merge branch 'master' into staging-next 2024-04-13 19:10:53 +02:00
Christina Sørensen
ad0527eef5
eza: 0.18.9 -> 0.18.10
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-04-11 07:13:18 +02:00
Philip Taron
6e6d0b869a
eza: fix typo: compatibilty to compatibility 2024-04-02 14:45:48 -07:00
Christina Sørensen
4962892234
eza: 0.18.8 -> 0.18.9
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-03-27 08:18:05 +01:00
Christina Sørensen
217bac9c14
eza: 0.18.7 -> 0.18.8
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-03-21 10:00:51 +01:00
Christina Sørensen
c4d684b597
eza: 0.18.6 -> 0.18.7
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-03-14 17:00:18 +01:00
Christina Sørensen
8890024497
eza: 0.18.5 -> 0.18.6
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-03-06 06:04:27 +01:00
Christina Sørensen
6244b6fc47
eza: 0.18.4 -> 0.18.5
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-02-29 06:14:42 +01:00
Christina Sørensen
27f7889596
eza: 0.18.3 -> 0.18.4
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-02-22 06:35:34 +01:00
Christina Sørensen
2855977dd8
eza: 0.18.2 -> 0.18.3
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-02-15 08:40:15 +01:00
Christina Sørensen
11922f0c8a
eza: 0.18.1 -> 0.18.2
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-02-08 19:17:51 +01:00