Skip to content

Commit

Permalink
krb5-src from vector's rdkafka needs mig
Browse files Browse the repository at this point in the history
  • Loading branch information
ahirner committed Nov 6, 2024
1 parent 70ef3a3 commit 1cc337a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ nix flake init -t github:ahirner/nix-trickle#devShell
- nixpkgs/[datafusion-cli](https://datafusion.apache.org/user-guide/cli): more recent
- nixpkgs/[sqruff](https://github.com/quarylabs/sqruff): added
- nixpkgs/[pspg](https://github.com/okbob/pspg): updates querystream on file changes (--querystream -f query.sql)
- nixpkgs/[vector](https://vector.dev): fixes for darwin x86
- nixpkgs: all overlays above
- default = nixpkgs

Expand Down
12 changes: 12 additions & 0 deletions overlays/vector.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
final: prev: let
pkgs = prev;
in {
vector =
if !pkgs.stdenv.isDarwin
then pkgs.vector
else
pkgs.vector.overrideAttrs (old: {
# krb5-src needs mig
nativeBuildInputs = old.nativeBuildInputs ++ [pkgs.darwin.bootstrap_cmds];
});
}

0 comments on commit 1cc337a

Please sign in to comment.