Skip to content

Commit 9ba9bcc

Browse files
committed
pypy workaround (NixOS/nixpkgs issue 419942)
1 parent 6ef0701 commit 9ba9bcc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
(import ./testlib/overlay.nix)
2020
(import ./gcc/overlay.nix)
2121
(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+
})
2228
];
2329
};
2430

0 commit comments

Comments
 (0)