We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f6e5d commit ee2e2b0Copy full SHA for ee2e2b0
1 file changed
nix/pkgs.nix
@@ -206,6 +206,16 @@ in with final;
206
))
207
);
208
209
+ liburing = prev.liburing.overrideAttrs (oldAttrs: {
210
+ version = "2.14"; # Update the version string
211
+ src = prev.fetchFromGitHub {
212
+ owner = "axboe";
213
+ repo = "liburing";
214
+ rev = "liburing-2.14";
215
+ sha256 = "sha256-bSq4M28JRND4bdaIv/KXcCDB35cYM7gra1GVO3poWfc=";
216
+ };
217
+ });
218
+
219
# Disable failing python uvloop tests
220
python310 = prev.python310.override {
221
packageOverrides = pythonFinal: pythonPrev: {
0 commit comments