We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef0701 commit a8a1d86Copy full SHA for a8a1d86
flake.nix
@@ -19,6 +19,9 @@
19
(import ./testlib/overlay.nix)
20
(import ./gcc/overlay.nix)
21
(import ./checker/overlay.nix)
22
+ (self: super: { pypy3 = super.pypy3.override (x: {
23
+ sqlite = super.sqlite.overrideAttrs (x: { configureFlags = x.configureFlags ++ ["--soname=legacy"]; });
24
+ }); }) # pypy workaround (NixOS/nixpkgs#419942)
25
];
26
};
27
0 commit comments