nixconfig/chicken/chicken.nix

34 lines
659 B
Nix
Raw Normal View History

2023-11-27 10:24:47 +00:00
{ config, home, libs, pkgs, ... }:
2023-11-16 10:30:36 +00:00
{
2023-11-27 10:24:47 +00:00
home.packages = with pkgs.chickenPackages_5.chickenEggs; [
2023-11-24 21:54:52 +00:00
apropos
chicken-doc
2023-11-16 10:30:36 +00:00
chicken-update
2023-11-25 12:26:33 +00:00
coops
2023-11-16 10:30:36 +00:00
csm
edn
lsp-server
mistie
nanomsg
r7rs
2023-11-24 22:02:17 +00:00
salmonella
2023-11-24 21:54:52 +00:00
srfi-1
srfi-18
2023-11-25 12:26:33 +00:00
srfi-69
2023-11-16 10:30:36 +00:00
srfi-197
2023-11-25 12:26:33 +00:00
utf8
2023-11-27 10:24:47 +00:00
] ++ [ pkgs.chicken ];
nixpkgs.overlays = [
(final: prev: {
chicken = prev.chicken.overrideAttrs (oldAttrs: {
postInstall = (oldAttrs.postInstall or "") + ''
cd `csi -R chicken.platform -p '(chicken-home)'`
curl https://3e8.org/pub/chicken-doc/chicken-doc-repo-5.tgz | sudo tar zx
'';
});
})
];
2023-11-16 10:30:36 +00:00
}