Skip to content

Commit 6344cb1

Browse files
committed
chore(deps): add missing dependencies to re2 in flake
1 parent c09677e commit 6344cb1

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

flake.nix

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,10 @@
108108
(final: prev: {
109109
google-re2 =
110110
prev.google-re2.overrideAttrs (old: rec {
111-
version = "1.1.20251105";
112-
src =
113-
pkgs.fetchPypi {
114-
pname = "google_re2";
115-
inherit version;
116-
hash = "sha256-HbFKKS7oMDuR6R58N+BawX08Rn8pQWx5rHCni+PmW9o=";
117-
};
111+
nativeBuildInputs =
112+
(old.nativeBuildInputs or [])
113+
++ (with final; [setuptools pybind11])
114+
++ (with pkgs; [re2 abseil-cpp]);
118115
});
119116
})
120117
]

0 commit comments

Comments
 (0)