2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-18 10:53:52 +00:00
Commit Graph

562 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
Sander
15e49d961b
meilisearch: migrate to the new macOS SDK 2024-11-19 19:54:49 +04:00
Benno Bielmeier
48698458b6 meilisearch: 1.11.1 → 1.11.3 2024-11-14 22:06:22 +01:00
Benno Bielmeier
2e5d0590ad meilisearch: 1.11.0 -> 1.11.1 2024-11-10 23:30:53 +01:00
Benno Bielmeier
e0df4c4198 meilisearch: 1.10.3 -> 1.11.0 2024-11-10 23:30:53 +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
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
0e1d05a286 qdrant: 1.11.5 -> 1.12.1 2024-10-30 13:28:43 +00:00
Paul Meyer
158b42e37f zincsearch: move to by-name
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-26 12:31:48 +02:00
Paul Meyer
ca9a722b51 zincsearch: 0.4.10 -> 0.4.10-unstable-2024-10-25, unbreak
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-26 12:28:47 +02:00
Benno Bielmeier
25607567b9 meilisearch: 1.10.2 -> 1.10.3 2024-10-25 09:01:58 +02:00
Yt
47c062ccd8
meilisearch: 1.9.0 -> 1.10.2 () 2024-10-20 12:23:01 -04:00
Benno Bielmeier
3af7e9a4c4 meilisearch: add bbenno as maintainer 2024-10-20 13:13:35 +02:00
Benno Bielmeier
fbf1cda2ad meilisearch: 1.9.0 -> 1.10.2 2024-10-20 13:06:25 +02:00
R. Ryantm
f3a06cef2b opensearch: 2.17.0 -> 2.17.1 2024-10-20 04:40:49 +00:00
R. Ryantm
b87b8119db weaviate: 1.26.4 -> 1.26.6 2024-10-09 04:08:54 +00:00
zimward
7c1dbbf7d9
quickwit: use vendored Cargo.lock instead of patching src 2024-10-05 09:29:24 +09:00
Paul Meyer
3e9b0cdf35
go_1_21/buildGo121Module: remove () 2024-10-04 08:29:15 +02:00
Paul Meyer
2c7cfbb88c zincsearch: unpin Go version, mark broken
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-01 10:35:59 +02:00
R. Ryantm
d4a3b76cc4 typesense: 27.0 -> 27.1 2024-09-29 16:14:51 +00:00
Yt
00b7da69ed
quickwit: fix compilation with rust 1.80 () 2024-09-29 07:23:21 -04:00
zimward
d1f806d5d8
quickwit: fix compilation with rust 1.80 2024-09-29 11:56:20 +09:00
Robert Scott
ab7b6889ae
qdrant: 1.11.3 -> 1.11.5 () 2024-09-26 23:37:16 +01:00
Weijia Wang
58772849f3
opensearch: 2.16.0 -> 2.17.0 () 2024-09-26 23:39:28 +02:00
R. Ryantm
c8c056b2e9 qdrant: 1.11.3 -> 1.11.5 2024-09-26 14:42:27 +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
9774e5bf4f opensearch: 2.16.0 -> 2.17.0 2024-09-18 02:47:29 +00:00
Anthony ROUSSEL
076aa0be1b sonic-server: migrate to pkgs/by-name, format with nixfmt-rfc-style 2024-09-17 22:02:43 +02:00
Weijia Wang
7c88da4aa9
qdrant: 1.11.2 -> 1.11.3 () 2024-09-11 00:39:51 +02:00
R. Ryantm
be6aec109c weaviate: 1.25.9 -> 1.26.4 2024-09-08 06:09:54 +00:00
Amir Yalon
fd2982de56 Build sphinxsearch using the old c++98 standard
Various warnings are emitted when building in Darwin environments,
apparently due to the use of Clang as opposed to GCC. We could continue
to add more `-Wno-xxx` flags as they arise, either with the existing
`stdenv.isDarwin` condition or with the more correct
`stdenv.cc.isClang`, but for an older codebase it seems more prodent to
stick with the latest standard where it builds cleanly. The newer
`-std=c++11` was also attempted, but it still failed to build.
2024-09-05 15:35:19 +03:00
R. Ryantm
d27dc73da5 qdrant: 1.11.2 -> 1.11.3 2024-09-04 19:14:38 +00:00
R. Ryantm
7e7941b89e typesense: 26.0 -> 27.0 2024-08-31 21:58:47 +00:00
R. Ryantm
cf168375e9 qdrant: 1.10.1 -> 1.11.2 2024-08-29 11:02:04 +00:00
éclairevoyant
52a95e306d
meilisearch: fix build with rust 1.80 2024-08-25 15:55:24 -04:00
Philip Taron
31d91e9af6
sphinxsearch: remove with statements 2024-08-18 06:32:22 -07:00
Peder Bergebakken Sundt
298bf4a04c
Merge pull request from r-ryantm/auto-update/groonga
groonga: 14.0.5 -> 14.0.6
2024-08-16 02:08:00 +02:00
Donovan Glover
f97145f837
Merge pull request from r-ryantm/auto-update/opensearch
opensearch: 2.15.0 -> 2.16.0
2024-08-13 21:59:08 +00:00
Peder Bergebakken Sundt
d4b7361c84
Merge pull request from TomaSajt/servers-toplevel-with
Remove usage of top-level `with lib;` from `pkgs/servers`
2024-08-08 22:50:56 +02:00
R. Ryantm
8a98528a8d opensearch: 2.15.0 -> 2.16.0 2024-08-08 01:56:17 +00:00
R. Ryantm
af6dd4a125 weaviate: 1.25.8 -> 1.25.9 2024-07-30 08:37:31 +00:00
R. Ryantm
08cd0641c3 groonga: 14.0.5 -> 14.0.6 2024-07-30 01:14:40 +00:00
Sigmanificient
543cd40ecc treewide: remove trailing space in description
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 |
xargs -i nvim {}` and sorting the opened files by hand, avoiding
generated packages list
2024-07-26 03:38:50 +02:00
Peder Bergebakken Sundt
529f65d18a
Merge pull request from r-ryantm/auto-update/weaviate
weaviate: 1.25.6 -> 1.25.8
2024-07-25 03:32:47 +02:00
R. Ryantm
a8cf52fddc weaviate: 1.25.6 -> 1.25.8 2024-07-19 07:47:36 +00:00
R. Ryantm
45de510085 qdrant: 1.10.0 -> 1.10.1 2024-07-18 04:16:01 +00:00
Weijia Wang
8c53488b3f
Merge pull request from r-ryantm/auto-update/qdrant
qdrant: 1.9.7 -> 1.10.0
2024-07-15 16:31:53 +02:00
Sigmanificient
512e8afdb9 treewide: remove unused occurence of stdenv (and other) arguments
format (will squash)
2024-07-14 04:32:56 +02:00
Weijia Wang
7252b96d60
Merge pull request from r-ryantm/auto-update/groonga
groonga: 14.0.4 -> 14.0.5
2024-07-11 02:03:48 +02:00
AveryanAlex
db38f1da59
meilisearch: 1.8.3 -> 1.9.0 2024-07-08 00:19:47 +03:00