Commit Graph

40 Commits

Author SHA1 Message Date
R. Ryantm
f4cd916d2f eksctl: 0.197.0 -> 0.198.0 2024-12-13 08:28:10 +00:00
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
Shaw Vrana
a0b7a4ea1e eksctl: 0.194.0 -> 0.197.0 2024-12-05 11:32:36 -08:00
R. Ryantm
f0a8e35f2f eksctl: 0.193.0 -> 0.194.0 2024-12-01 00:49:11 +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
R. Ryantm
14cdc1dfb0 eksctl: 0.191.0 -> 0.193.0 2024-10-20 06:42:20 +00:00
Ivan Kovnatsky
f3f69171dd
treewide: migrate packages maintained by ivankovnatsky to by-name 2024-10-04 16:31:04 +03:00
R. Ryantm
7a92aff10e eksctl: 0.190.0 -> 0.191.0 2024-09-27 03:14:36 +00: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
Aaron Jheng
6abda61b06
ekho: use finalAttrs 2024-09-09 09:04:33 +00:00
Aaron Jheng
8c2bb53e5a
ekho: move to by-name 2024-09-08 07:39:13 +00:00
R. Ryantm
123b06425c eksctl: 0.189.0 -> 0.190.0 2024-09-04 12:36:31 +00:00
R. Ryantm
cfc80acb81 eksctl: 0.188.0 -> 0.189.0 2024-08-19 12:49:34 +00:00
R. Ryantm
59abb32266 eksctl: 0.187.0 -> 0.188.0 2024-08-05 08:31:01 +00:00
R. Ryantm
f2cbdf6254 eksctl: 0.186.0 -> 0.187.0 2024-07-23 18:12:21 +00:00
R. Ryantm
87d8dc97a9 eksctl: 0.184.0 -> 0.186.0 2024-07-14 07:44:36 +00:00
h7x4
7384b9abdc
treewide: set meta.changelog 2024-07-07 15:20:06 +02:00
R. Ryantm
d7435a3b46 eksctl: 0.183.0 -> 0.184.0 2024-07-04 04:18:57 +00:00
R. Ryantm
e6ce792f0e eksctl: 0.182.0 -> 0.183.0 2024-06-20 08:42:53 +00:00
R. Ryantm
af47703d0d eksctl: 0.181.0 -> 0.182.0 2024-06-11 23:33:10 +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
R. Ryantm
757207f233 eksctl: 0.179.0 -> 0.181.0 2024-06-05 11:50:35 +00:00
R. Ryantm
8f37d2231e eksctl: 0.178.0 -> 0.179.0 2024-05-29 09:51:22 +00:00
R. Ryantm
2ba59d41dd eksctl: 0.177.0 -> 0.178.0 2024-05-23 13:40:34 +00:00
R. Ryantm
737fe266b6 eksctl: 0.176.0 -> 0.177.0 2024-05-17 14:23:54 +00:00
R. Ryantm
237bf91a2b eksctl: 0.175.0 -> 0.176.0 2024-04-25 12:40:51 +00:00
R. Ryantm
0d8ec7b226 eksctl: 0.174.0 -> 0.175.0 2024-03-22 16:21:47 +00:00
R. Ryantm
eda682df50 eksctl: 0.173.0 -> 0.174.0 2024-03-16 01:09:32 +00:00
R. Ryantm
1048982ea1 eksctl: 0.172.0 -> 0.173.0 2024-03-01 13:52:55 +00:00
R. Ryantm
f591b5a7d1 eksctl: 0.171.0 -> 0.172.0 2024-02-23 04:30:47 +00:00
R. Ryantm
a2fea7db03 eksctl: 0.170.0 -> 0.171.0 2024-02-10 06:28:05 +00:00
R. Ryantm
9a1a7ebd8b eksctl: 0.169.0 -> 0.170.0 2024-02-03 09:30:32 +00:00
R. Ryantm
6bad2ad4de eksctl: 0.168.0 -> 0.169.0 2024-01-26 16:04:41 +00:00
R. Ryantm
5843505d47 eksctl: 0.167.0 -> 0.168.0 2024-01-20 07:50:14 +00:00
R. Ryantm
251c448e78 eksctl: 0.165.0 -> 0.167.0 2023-12-26 02:46:33 +00:00
R. Ryantm
d59e3dee72 eksctl: 0.164.0 -> 0.165.0 2023-12-14 14:04:27 +00:00
R. Ryantm
8ebee6a764 eksctl: 0.163.0 -> 0.164.0 2023-11-19 03:35:38 +11:00
R. Ryantm
58e0d04646 eksctl: 0.161.0 -> 0.163.0 2023-10-26 18:26:43 +00:00
R. Ryantm
1af1392dbf eksctl: 0.160.0 -> 0.161.0 2023-10-08 11:10:45 +00:00
xrelkd
6ec5565e0a
eksctl: migrate to by-name 2023-09-30 13:02:40 +08:00