nixconfig/chicken/chicken.nix

35 lines
731 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 14:30:15 +00:00
] ++ (with pkgs; [
chicken
# (chicken.overrideAttrs (final: previous: {
# assets = fetchurl {
# url = "https://3e8.org/pub/chicken-doc/chicken-doc-repo-5.tgz";
# sha256 = "sha256-3fwcepem+1xj5UlQ+fCjvjHVtE8LO5co2A0k5gx5cZU=";
# };
# postInstall = (previous.postInstall or "") + ''
# cd `csi -R chicken.platform -p '(chicken-home)'`;
# tar zxf ${assets};
# '';
# }))
]);
2023-11-16 10:30:36 +00:00
}