We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c09677e commit 6344cb1Copy full SHA for 6344cb1
flake.nix
@@ -108,13 +108,10 @@
108
(final: prev: {
109
google-re2 =
110
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
- };
+ nativeBuildInputs =
+ (old.nativeBuildInputs or [])
+ ++ (with final; [setuptools pybind11])
+ ++ (with pkgs; [re2 abseil-cpp]);
118
});
119
})
120
]
0 commit comments