Commit Graph

19 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
Fabian Affolter
7c2b2e3835 tlsx: format with nixfmt 2024-12-02 23:56:11 +01:00
Anderson Torres
58fe14bdf9 treewide: remove AndersonTorres from some packages' meta.maintainers 2024-11-21 21:24:15 -03: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
PAEPCKE, Michael
a7ad1c182b
tlsinfo: init at 0.1.41 2024-10-20 08:49:16 +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
h7x4
2a1b0df092
tlclient: init at 4.17.0 (#342516) 2024-09-19 00:42:15 +02:00
Felix Albrigtsen
d006d68c42 tlclient: init at 4.17.0
Co-authored-by: Stefan Paul Noack <stefan@noack.fi>
Co-authored-by: SCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>
2024-09-18 14:37:46 +02:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
Andreas Bielawski
a14c557f66
tlrc: fix build on darwin 2024-08-04 13:59:22 +02:00
Lena
f31b0cf680
tlrc: 1.9.2 -> 1.9.3 2024-07-29 15:35:31 +02:00
Lena
783927ab4a
tlrc: 1.9.1 -> 1.9.2 2024-04-29 17:20:11 +02:00
Lena
23cb504fe0
tlrc: 1.9.0 -> 1.9.1 2024-03-28 21:47:17 +01:00
Lena
5cf15d4f4d
tlrc: 1.8.0 -> 1.9.0 2024-03-24 13:46:08 +01:00
nikstur
52d2e90d45 tlmi-auth: enable cross-compliation by correctly classifying dependencies 2024-02-03 12:13:37 +01:00
nikstur
9ec3d89500 tlmi-auth: improve overridability
Use a recursive set instead of a let in before calling
stdenv.mkDerivation. This allows to properly override the derivation
with overrideAttrs.

Do not re-use the pname in the fetcher function. Otherwise you cannot
override the pname of a derivation while still fetching the same
sources. However, this is something you sometimes want to do.
2024-02-03 12:13:37 +01:00
Philippe Schaaf
ce689654cf
tlmi-auth: init at 1.0.1
Signed-off-by: Philippe Schaaf <philippe.schaaf@secunet.com>
2024-01-26 17:42:55 +01:00
Lena
44c2bd88f4
tlrc: 1.7.1 -> 1.8.0 2023-11-30 21:04:25 +01:00
Lena
882f864a0a
tlrc: init at 1.7.1 2023-11-14 18:19:32 +01:00