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 9ba9bccCopy full SHA for 9ba9bcc
flake.nix
@@ -19,6 +19,12 @@
19
(import ./testlib/overlay.nix)
20
(import ./gcc/overlay.nix)
21
(import ./checker/overlay.nix)
22
+ (self: super: let
23
+ sqlite = super.sqlite.overrideAttrs (x: { configureFlags = x.configureFlags ++ ["--soname=legacy"]; });
24
+ in { # pypy workaround (NixOS/nixpkgs#419942)
25
+ pypy = super.pypy.override { inherit sqlite; };
26
+ pypy3 = super.pypy3.override { inherit sqlite; };
27
+ })
28
];
29
};
30
0 commit comments