Commit Graph

93 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
Florian
8eafe1f165
perkeep: 0.11 -> 0-unstable-2024-04-23 (#360175)
* perkeep: format

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>

* perkeep: 0.11 -> 0-unstable-2024-04-23

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>

* perkeep: add gador as co-maintainer

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>

---------

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-12-10 00:41:25 -05:00
nixpkgs-merge-bot[bot]
dab4fe5354
peazip: 10.0.0 -> 10.1.0 (#362704) 2024-12-09 18:12:50 +00:00
nixpkgs-merge-bot[bot]
d4f88d31e2
pekwm: 0.3.0 -> 0.3.1 (#360639) 2024-12-07 17:11:53 +00:00
R. Ryantm
6b7dea8d87 peazip: 10.0.0 -> 10.1.0 2024-12-07 05:44:10 +00:00
R. Ryantm
00ef09a323 pekwm: 0.3.0 -> 0.3.1 2024-12-01 01:34:36 +00:00
R. Ryantm
a4b9be1e7a pet: 0.9.0 -> 1.0.0 2024-11-30 17:30:52 +00:00
Fabian Affolter
53cbef91e4
penelope: init at 0.12.4-unstable-2024-10-21 (#358819) 2024-11-26 09:00:09 +01:00
Fabian Affolter
1d220ad552 penelope: init at 0.12.4-unstable-2024-10-21
Penelope Shell Handler

https://github.com/brightio/penelope
2024-11-24 22:54:16 +01:00
Henner Zeller
61f09a9edc perf_data_converter: fix fixed derivation hash.
Bazel seems to put elements in there which make it dependent on
some unknown dependencies.
2024-11-16 15:27:54 -08:00
R. Ryantm
4e4997e63e peergos: 0.20.0 -> 0.21.0 2024-11-14 01:21:19 +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
Weijia Wang
c357e610d9 performous: fix build with ffmpeg 7 2024-11-07 04:05:47 +01:00
Weijia Wang
d74b818ad0 performous: reformat 2024-11-07 04:04:20 +01:00
Weijia Wang
72fc0b165a performous: move to pkgs/by-name 2024-11-07 04:03:49 +01:00
Cosima Neidahl
5d3e027d1d
peertube-viewer: clean up package a bit (#342146) 2024-11-02 13:37:06 +01:00
Markus Kowalewski
17aacfb690
mpiCheckPhaseHook: disable openmpi's ssh plugin (#351473) 2024-11-02 13:33:57 +01:00
Anna Aurora
b6611fea57
peazip: moved to by-name 2024-10-27 17:53:46 +01:00
Markus Kowalewski
fb9bbbf9f0 petsc: remove openssh from checkInputs
Is taken care of by mpiCheckPhaseHook
2024-10-26 17:49:27 +02:00
Henner Zeller
97057b19d4 perf_data_converter: 0-unstable-2024-07-25 -> 0-unstable-2024-10-14 2024-10-22 08:48:33 -07:00
qbisi
161892e932 petsc: use mpiCheckPhaseHook to bypass check in sandbox 2024-10-21 07:20:52 +08:00
Pol Dellaiera
c8e9067fab
pest: 2.34.7 -> 3.3.1 (#347922) 2024-10-13 10:23:27 +02:00
Patka
04820180a0
pest: 2.34.7 -> 3.3.1 2024-10-11 15:06:02 +02:00
Vladimír Čunát
01dfa6bca5
persistent-cache-cpp: fixup build, missing #include 2024-10-03 10:42:04 +02:00
R. Ryantm
52f187490d peergos: 0.19.0 -> 0.20.0 2024-09-27 11:51:04 +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
Nick Cao
b6c57d2e51
pegtl: 3.2.7 -> 3.2.8 (#343048) 2024-09-20 18:13:40 -04:00
h7x4
9a6c76c4af
treewide: remove unused inputs (#342672) 2024-09-19 20:36:18 +02:00
R. Ryantm
0791c9f79a pegtl: 3.2.7 -> 3.2.8 2024-09-19 15:09:18 +00:00
Joshua Trees
602a858557 peertube-viewer: clean up package a bit
- remove unnecessary youtube-dl arg
- remove unnecessary rec keyword
- add meta.mainProgram to make "nix run" work
2024-09-18 17:17:23 +02:00
Peder Bergebakken Sundt
8c8c27bb19 treewide: remove unused inputs 2024-09-18 01:00:07 +02:00
nicoo
f9d60a4751 perf_data_converter: sha256hash 2024-09-17 06:34:07 +00:00
haruki7049
7d04350332 peertube-viewer: init at 1.8.6
Author: haruki7049 <tontonkirikiri@gmail.com>
Co-Authored-By: cab <cab@cab.moe>
2024-09-12 21:55:29 +04:00
Alexander Kiselyov
1bd56ac6fb petsc: moved mpiSupport flag to passthru 2024-08-24 12:10:31 +00:00
Alexander Kiselyov
dc622dce81 petsc: removed default unfree dependencies 2024-08-24 12:10:31 +00:00
R. Ryantm
a3404d9024 peergos: 0.18.0 -> 0.19.0 2024-08-10 03:24:33 +00:00
Henner Zeller
50fdad0256 perf_data_converter: 0-unstable-2024-07-10 -> 0-unstable-2024-07-25 2024-08-06 04:20:16 -07:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
Artturin
60e9cffe2c Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
Marcus Ramberg
984a495f68
Merge pull request #327647 from michaelglass/add-percona-toolkit-as-package 2024-07-21 20:00:36 +03:00
Randy Eckenrode
2f07b9556b
Merge pull request #328077 from reckenrode/cctools-darwin-aliases
tree-wide: use top-level cctools
2024-07-18 08:54:54 -04:00
Randy Eckenrode
f9b7f4ec09
tree-wide: use top-level cctools 2024-07-17 22:36:19 -04:00
Peder Bergebakken Sundt
4a8aba6a4a
Merge pull request #326993 from hzeller/feature-20240713-update-perf-data-converter
perf_data_converter: 0-unstable-2024-03-12 -> 0-unstable-2024-07-10
2024-07-18 01:15:27 +02:00
Michael Glass
6ab1c5291d
percona-toolkit: init at 3.2.0 2024-07-17 11:59:33 +02:00
Weijia Wang
ed05c2b412
Merge pull request #325138 from r-ryantm/auto-update/petsc
petsc: 3.21.0 -> 3.21.3
2024-07-15 16:47:31 +02:00
Henner Zeller
8a1e588f16 perf_data_converter: 0-unstable-2024-03-12 -> 0-unstable-2024-07-10 2024-07-13 19:51:15 -07:00
Sigmanificient
512e8afdb9 treewide: remove unused occurence of stdenv (and other) arguments
format (will squash)
2024-07-14 04:32:56 +02:00
R. Ryantm
7fa522446b petsc: 3.21.0 -> 3.21.3 2024-07-06 23:18:57 +00:00