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
af8de4f367 abctl: 0.22.0 -> 0.23.0 2024-12-09 08:47:26 +00:00
R. Ryantm
2f66cc6748 abcmidi: 2024.10.10 -> 2024.12.06 2024-12-06 12:57:59 +00:00
Austin Horstman
b0ff56fd78
abctl: 0.13.1 -> 0.22.0 (#359267) 2024-12-01 07:35:24 -06:00
Jonas Heinrich
407b526314
abuild: 3.13.0 -> 3.14.1 (#359271) 2024-11-27 12:11:39 +01:00
Fabian Affolter
931210bbbb
above: init at 2.7 (#359228) 2024-11-27 08:00:33 +01:00
wxt
1bd9d101cc
abctl: 0.13.1 -> 0.22.0 2024-11-26 20:45:04 +08:00
wxt
6ab2c6b578
abuild: 3.13.0 -> 3.14.1 2024-11-26 20:33:56 +08:00
wxt
a17b5209a0
abuild: nixfmt 2024-11-26 20:31:57 +08:00
Fabian Affolter
9071fbfd92 above: init at 2.7
Invisible network protocol sniffer

https://github.com/casterbyte/Above
2024-11-26 10:49:04 +01:00
Markus Kowalewski
a5b22ac2b0 abracadabra: 2.7.0 -> 2.7.1 2024-11-25 11:27:52 +01:00
github-actions[bot]
b50e7536f8
Merge master into staging-next 2024-11-14 00:14:11 +00:00
jopejoe1
a56faabb77 abiword: 3.0.5 -> 3.0.6 2024-11-11 21:19:58 +01:00
jopejoe1
e908700248 abiword: add update script 2024-11-11 21:19:57 +01:00
K900
7ebe9739ff Merge remote-tracking branch 'origin/master' into staging-next 2024-11-09 23:12:56 +03:00
Nick Cao
3061dbd29c
ab-av1: 0.7.18 -> 0.7.19 (#354684) 2024-11-09 10:44:50 -05:00
Emily
ce788776a5 Merge master into staging-next 2024-11-09 12:51:01 +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
78b5698555 ab-av1: 0.7.18 -> 0.7.19 2024-11-09 04:52:01 +00:00
Noa Aarts
c06fa3b4a9
abracadabra: move to by-name 2024-11-02 21:13:21 +01:00
R. Ryantm
bd78964fd0 abcmidi: 2024.08.13 -> 2024.10.10 2024-10-16 21:08:32 +00:00
R. Ryantm
cf0de9e106 ab-av1: 0.7.17 -> 0.7.18 2024-10-04 13:23:11 +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
R. Ryantm
2c5d0d710e abpoa: 1.5.2 -> 1.5.3 2024-09-19 01:19:01 +00:00
Peder Bergebakken Sundt
55bcf5fcac
abctl: init at 0.13.1 (#337569) 2024-09-17 00:10:39 +02:00
Xelden
c0307f0972 abctl: init at 0.13.1 2024-09-16 11:29:29 -05:00
t4ccer
cf6bccd822
abcmidi: 2024.08.11 -> 2024.08.13 2024-09-07 22:28:35 -06:00
Peder Bergebakken Sundt
ebc2389134 treewide: remove refs/tags/ from github release meta.changelog urls
diff of `jq <packages.json 'to_entries[]|"\(.key) \(.value.meta.changelog)"' -r`:

https://gist.github.com/pbsds/49b2e2ae5c9b967a0972bbc3c2597c12
2024-08-29 22:45:00 -04:00
R. Ryantm
97bff0278b ab-av1: 0.7.16 -> 0.7.17 2024-08-16 11:24:55 +00:00
Nick Cao
bd74a57d99
Merge pull request #334427 from r-ryantm/auto-update/ablog
ablog: 0.11.10 -> 0.11.11
2024-08-14 15:40:16 -04:00
Sebastián Mancilla
53160fe2e2
Merge pull request #330368 from natsukium/abpoa/update
abpoa: 1.5.1 -> 1.5.2
2024-08-13 21:29:42 -04:00
R. Ryantm
ddfb7ef57b ablog: 0.11.10 -> 0.11.11 2024-08-13 16:20:01 +00:00
Robert Schütz
943d75b117 abcmidi: modernize 2024-08-12 07:34:53 -07:00
Robert Schütz
fe02238662 abcmidi: move to pkgs/by-name 2024-08-12 07:25:25 -07:00
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
natsukium
a414c8b4ac
abpoa: 1.5.1 -> 1.5.2
Diff: https://github.com/yangao07/abPOA/compare/refs/tags/v1.5.1...v1.5.2

Changelog: https://github.com/yangao07/abPOA/releases/tag/refs/tags/v1.5.2
2024-07-27 18:55:54 +09:00
R. Ryantm
5db5c530d9 ab-av1: 0.7.15 -> 0.7.16 2024-07-13 09:34:59 +00:00
OTABI Tomoya
72966ff6cf
Merge pull request #324590 from natsukium/truvari/update
truvari: 4.1.0 -> 4.2.2; abpoa: init at 1.5.1
2024-07-12 14:37:07 +09:00
natsukium
c4de28bc2d
abpoa: init at 1.5.1
https://github.com/yangao07/abPOA
2024-07-05 01:13:49 +09:00
R. Ryantm
436596b5fd ab-av1: 0.7.14 -> 0.7.15 2024-07-02 00:32:11 +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
lucasew
1e1685f116 ablog: 0.11.8 -> 0.11.10
Signed-off-by: lucasew <lucas59356@gmail.com>
2024-05-16 13:04:30 -03:00
lucasew
4d6e011773 ablog: move to by-name, fix build
Signed-off-by: lucasew <lucas59356@gmail.com>
2024-05-16 13:03:49 -03:00
Mario Rodas
2becf6e837 maintainers: drop marsam 2024-04-24 04:20:00 +00:00
Mario Rodas
0113a28f5f ab-av1: init at 0.7.14 2024-04-19 04:20:00 +00:00
Gustavo Coutinho de Souza
29d1b59b2d
aba: 0.7.1 -> 0.8.0 2023-12-02 21:48:35 -03:00
Gustavo Coutinho de Souza
f4f39bab16
aba: 0.7.0 -> 0.7.1
And also the following changes:

1. Make use of `just` as the build framework; and
2. Remove meta attribute platforms, since it is set by
   `buildRustPackage`.
2023-11-02 23:46:54 -03:00
Gustavo Coutinho de Souza
82ee010f3e
aba: init at 0.7.0 2023-10-26 08:02:21 -03:00