Commit Graph

48 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
R. Ryantm
38d3c1a8c6 tpnote: 1.24.9 -> 1.24.10 2024-12-07 23:12:01 +00:00
Aleksana
6ca2e8aeba
treewide: remove unused {lib,}clang from more build closures (#361298) 2024-12-06 10:21:43 +08:00
sodiboo
173c0f3194 tplay: remove unused libclang from build closure 2024-12-06 08:56:13 +08:00
Sebastian Sellmeier
7bff69e5e2
tp-auto-kbbl: remove sebtm as maintainer 2024-12-03 20:08:52 +01:00
Steffen Vogel
243a3f5f05 tpm2-openssl: use nix-update-script 2024-11-23 18:10:20 +01:00
OTABI Tomoya
444cd38396
tplay: 0.5.0 -> 0.6.0 (#354940) 2024-11-22 17:45:59 +09:00
jopejoe1
7d0c987cea
tetrio-plus: split tpsecore into seperate package (#353557) 2024-11-17 16:25:06 +01:00
R. Ryantm
b912489885 tplay: 0.5.0 -> 0.6.0 2024-11-12 17:42:32 +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
R. Ryantm
b2a003ef83 tparse: 0.15.0 -> 0.16.0 2024-11-08 14:08:37 +00:00
Emily
3a6d4d006a
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc (#354197) 2024-11-07 18:16:05 +00:00
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
R. Ryantm
ebf44e2f70 tpi: 1.0.6 -> 1.0.7 2024-11-07 09:49:34 +00:00
Gaétan Lepage
208e529c92
tpm-fido: init at 0-unstable-2024-10-30 (#352282) 2024-11-05 11:33:15 +01:00
huantian
ff546ee4f3
tetrio-plus: split tpsecore into seperate package
main purpose of this is to allow tpsecore to be built by hydra
adding tetrio-plus to top level packages didn't cause it to be built,
since tetrio-plus is marked unfree

also includes a minor version bump for tetrio-plus/tpsecore itself
this update for tpsecore fixes #352897 as it includes a version bump for
wasm-bindgen, allowing us to also increase wasm-bindgen-cli version
2024-11-03 18:18:51 -08:00
genga
5e526681a7 tpm-fido: init at 0-unstable-2024-10-30
tpm-fido: update
2024-10-30 21:39:47 +03:00
R. Ryantm
df3927e29e tpnote: 1.24.8 -> 1.24.9 2024-10-30 07:07:28 +00:00
Wout Swinkels
56f7815a1f tpi: init at 1.0.6 2024-10-26 12:05:04 +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
Nikolay Korotkiy
cac4da7aec
tparse: add ldflags 2024-09-07 02:16:16 +04:00
R. Ryantm
e714e0d031 tparse: 0.14.0 -> 0.15.0 2024-09-06 02:53:25 +00:00
Adam C. Stephens
3efc29a76c
tpnote: 1.24.7 -> 1.24.8 (#337046) 2024-09-02 20:36:06 -04:00
Sandro
7bb8942dcd
tproxy: init at 0.8.1 (#297045) 2024-09-01 18:47:21 +02:00
R. Ryantm
e1cbc50048 tpnote: 1.24.7 -> 1.24.8 2024-08-24 16:31:10 +00:00
DCsunset
f1eb2f7892 tproxy: init at 0.8.1 2024-08-03 19:21:52 -04:00
Aleksana
d633595bac
Merge pull request #326232 from iynaix/tplay-ffprobe-runtime
tplay: fix runtime ffprobe dependency
2024-08-03 21:01:38 +08:00
R. Ryantm
44480e472d tpnote: 1.24.6 -> 1.24.7 2024-07-22 02:24:18 +00:00
Lin Xianyi
b15945b43c tplay: fix runtime ffprobe dependency 2024-07-11 09:49:51 +08:00
R. Ryantm
19da04500e tpnote: 1.24.4 -> 1.24.6 2024-07-10 03:18:38 +00:00
Nick Cao
d1c235f2e7
Merge pull request #321647 from Frontear/update-tpnote
tpnote: 1.24.2 -> 1.24.4
2024-06-27 15:57:48 -04:00
R. Ryantm
49674e5b27 tparse: 0.13.3 -> 0.14.0 2024-06-22 02:59:12 +00:00
Ali Rizvi
e5e5da76dc
tpnote: 1.24.2 -> 1.24.4 2024-06-21 22:13:25 -04:00
Oliver Breitwieser
14925a6a2c tparse: init at 0.13.3 2024-06-18 22:36:52 +02:00
Jens Getreu
1109db26e1 tpnote: add manpage 2024-06-09 10:43:32 +03:00
Sigmanificient
cc8120d3ff pkgs/by-name: remove unuseed fetchpatch arguments 2024-05-24 02:49:58 +02:00
Nick Cao
786428bb5a
tplay: use rustPlatform.bindgenHook 2024-04-30 09:34:16 -04:00
Peder Bergebakken Sundt
d7d8ffeaa2
Merge pull request #300578 from colemickens/colemickens/tplay-0.5.0
tplay: 0.4.0 -> 0.5.0
2024-04-22 22:41:27 +02:00
Peder Bergebakken Sundt
9f3d24eccd tplay.meta.maintainers: add colemickens 2024-04-22 22:35:40 +02:00
kashw2
1f1714519a tpnote: 1.24.0 -> 1.24.2 2024-04-13 00:12:53 +10:00
Weijia Wang
c5f767e737
Merge pull request #302604 from r-ryantm/auto-update/tpnote
tpnote: 1.23.10 -> 1.24.0
2024-04-09 08:29:36 +02:00
R. Ryantm
0a2a7249a4 tpnote: 1.23.10 -> 1.24.0 2024-04-08 15:17:19 +00:00
Steffen Vogel
c29744a0fe tpm2-openssl: init at 1.2.0 2024-04-07 12:26:11 +02:00
Cole Mickens
5e264e2d13 tplay: 0.4.0 -> 0.5.0 2024-03-31 16:13:53 -07:00
Jens Getreu
7adc4c8a53 tpnote: 1.23.9 -> 1.23.10 2024-03-21 20:26:16 +02:00
Jens Getreu
9b5f584440 tpnote: init at 1.23.9 2024-03-13 20:15:33 +02:00
Demine
d1df76655e
tplay: init at 0.4.5 (#266300)
* maintainers: add demine

* tplay: init at 0.4.5
2023-11-13 18:57:48 +04:00
Raito Bezarius
3e6c2c196e tpm2-totp: init at 0.3.0 2023-10-21 13:36:52 +02:00