Skip to content

Commit a8a1d86

Browse files
committed
pypy workaround (NixOS/nixpkgs#419942)
1 parent 6ef0701 commit a8a1d86

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

flake.nix

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

0 commit comments

Comments
 (0)