Initial commit

This commit is contained in:
puck 2024-10-03 23:57:22 +00:00
commit 55a1efa08f
60 changed files with 5485 additions and 0 deletions

14
aux/overlay.nix Normal file
View file

@ -0,0 +1,14 @@
_: prevpkgs: {
chickenPackages_5 = prevpkgs.chickenPackages_5.overrideScope (_: prevchicken: {
chickenEggs = prevchicken.chickenEggs.overrideScope (_: preveggs: {
r7rs = preveggs.r7rs.overrideAttrs (o: {
patches = (o.patches or []) ++ [ ./r7rs.patch ];
});
socket = preveggs.socket.overrideAttrs (o: {
preBuild = null;
postPatch = "echo 'touch socket-config' >> build-socket-config";
});
});
});
}