Initial commit
This commit is contained in:
commit
55a1efa08f
60 changed files with 5485 additions and 0 deletions
14
aux/overlay.nix
Normal file
14
aux/overlay.nix
Normal 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";
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue