Commit Graph

105 Commits

Author SHA1 Message Date
Olivér Falvai
476d7434de
vector: format with nixfmt-rfc-style 2024-11-05 07:54:32 +01:00
Olivér Falvai
12437967ee
vector: readd missing mig command on darwin
https://hydra.nixos.org/build/277167788
2024-11-04 21:02:12 +01:00
Julius Michaelis
91cbfce5df vector: stop overriding default features
So far, features were overridden to remove unix from the default feature set.
However, e.g. oniguruma is in the dependency tree and only works on isUnix platforms, so the feature was always on anyways.

This additionally deals with the problem that adding the rdkafka?/… resulted in an empty feature list.
Alternatively, this could have been worked around by adding rdkafka/… to the feature list since rdkafka is enabled by another feature in the list,
but this is no longer necessary.
2024-10-25 11:27:55 +09:00
happysalada
a06599d7be vector: 0.41.1 -> 0.42.0; fix build 2024-10-23 07:22:23 -04: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
happysalada
48ba5e3550 vector: 0.40.1 -> 0.41.1; fix build 2024-09-17 03:54:01 -04:00
Jonathan Davies
4f1ca01f2e
vector: 0.40.0 → 0.40.1 2024-08-26 22:20:21 +01:00
Natalie Klestrup Röijezon
7d9c3fd5cc vector: fix compatibility with Rust 1.80 2024-08-21 12:32:06 +02:00
Jonathan Davies
a8f203cf8e
vector: 0.39.0 → 0.40.0 2024-07-29 21:50:53 +01:00
Jonathan Davies
c1d8b65552
vector: 0.38.0 → 0.39.0:
Drop patch, use variables instead.
2024-06-17 20:55:20 +01: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
Sigmanificient
d48a9bb622 treewide: remove unused fetchpatch arguments 2024-06-04 12:40:25 +02:00
Jonathan Davies
9f58e68298
vector: 0.37.1 → 0.38.0 2024-05-07 18:16:05 +01:00
Jonathan Davies
2002fc91df vector: 0.37.0 → 0.37.1 2024-04-10 00:04:08 +01:00
Jonathan Davies
4f62522862 vector: 0.36.1 → 0.37.0 2024-03-28 16:17:24 +00:00
Jonathan Davies
cadfa9d941 vector: 0.36.0 → 0.36.1 2024-03-11 21:53:41 +00:00
Jonathan Davies
5c5b6de926 vector: 0.35.0 → 0.36.0 2024-02-19 17:32:46 +00:00
Luka Blaskovic
3606478738 vector: fix build with rustc 1.75 2024-01-15 11:07:23 +00:00
Jonathan Davies
0cc5d8ad91 vector: 0.34.2 → 0.35.0 2024-01-15 11:05:30 +00:00
R. Ryantm
88ce05728f vector: 0.34.1 -> 0.34.2 2024-01-06 00:03:56 +00:00
ahirner
4eb501c977 vector: add SystemConfiguration for darwin, fixes ld 2023-12-13 00:10:47 +00:00
Jonathan Davies
0a6a7c8341 vector: Added upstream patch for Rust 1.73 fix 2023-11-20 12:56:58 +00:00
Jonathan Davies
3d438e4cf8 vector: 0.34.0 → 0.34.1 2023-11-17 13:12:06 +00:00
Adam Joseph
c7e0f6b905 treewide: s_targetPlatform_hostPlatform_ in non-compiler packages
stdenv.targetPlatform really shouldn't be used by software that
doesn't generate or manipulate binaries.  I reviewed all uses of
targetPlatform outside of pkgs/development/compilers and pkgs/stdenv
and replaced those which weren't involved in something which fits
these criteria.
2023-11-17 08:07:34 +00:00
Jonathan Davies
fadcbfcc68 vector: 0.33.1 → 0.34.0 2023-11-08 00:09:18 +00:00
Jonathan Davies
c9eed91c4b vector: 0.33.0 → 0.33.1 2023-11-03 13:48:53 +00:00
Yureka
799fff889b tree-wide: make rust jemalloc-sys use nixpkgs jemalloc build 2023-10-20 14:26:07 +02:00
happysalada
191393e7f5 vector: 0.31.0 -> 0.33.0 2023-09-27 21:06:52 +00:00
Robert Hensing
4c1d3cee60 treewide: Add meta.mainProgram
This should fix most warnings getExe in based on grepping `nixos/`.
2023-07-31 21:54:43 +02:00
Theodore Ni
33916d2336 vector: compatibility with rust 1.71 2023-07-23 08:03:57 +00:00
Thomas Gerbet
96e065d2d4 vector: 0.29.1 -> 0.31.0
Release notes:
https://vector.dev/releases/0.31.0/
https://vector.dev/releases/0.30.0/
2023-07-08 17:41:58 +08:00
Weijia Wang
fe1bb502a3 vector: migrate to bindgenHook 2023-05-27 17:45:06 -04:00
Thomas Gerbet
d6a1aea19b vector: enable sources-dnstap feature
This feature is enabled in the official build:
https://github.com/vectordotdev/vector/blob/v0.30.0/Cargo.toml#L376
2023-05-26 21:03:54 -04:00
happysalada
2909d9b117 vector: 0.28.1 -> 0.29.1 2023-04-28 18:58:41 -04:00
Xuanwo
463097e77d
vector: Update meta to latest 2023-04-02 14:22:32 +08:00
Yureka
f8cbc3c281 tree-wide: convert rust with git deps to importCargoLock 2023-03-26 01:52:04 +01:00
R. Ryantm
a7f90a36f1 vector: 0.28.0 -> 0.28.1 2023-03-07 00:07:23 -05:00
R. Ryantm
358aafbd97 vector: 0.27.0 -> 0.28.0 2023-03-04 22:03:13 -05:00
happysalada
0e69342bad vector: 0.26.0 -> 0.27.0 2023-01-19 18:17:57 -05:00
Theodore Ni
108f65bbd6 vector: fix build against rust 1.66 2022-12-23 14:46:16 -05:00
happysalada
88984cfeee vector: add update script to derivation 2022-12-17 16:39:29 -05:00
happysalada
a71f67b5bd vector: 0.25.2 -> 0.26.0 2022-12-09 09:21:47 -05:00
happysalada
58e61d48be vector: 0.25.1 -> 0.25.2 2022-12-03 23:30:46 -05:00
Jordan Doyle
20df93568e vector: add enrichment-tables feature to build 2022-12-03 13:23:04 -05:00
Theodore Ni
cd00072eeb vector: 0.25.0 -> 0.25.1 2022-11-13 13:23:48 -05:00
Theodore Ni
1dd8696f96 vector: 0.24.1 -> 0.25.0 2022-11-04 21:06:39 -04:00
Dennis Gosnell
6a60941803 vector: enable api and api-client features
This enables users to use commands like `vector top`.
2022-10-14 16:14:34 -04:00
Theodore Ni
bc2ce9630a vector: patch to compile with rust 1.64. 2022-10-08 12:44:27 +09:00
Kira Bruneau
748175c0c3 vector: build on all platforms 2022-10-05 18:47:40 -05:00
Luc Perkins
cce4fdbcfd
vector: update platforms list to include aarch64-darwin 2022-09-28 14:47:36 -05:00