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