interactive-prog/shell.nix

10 lines
205 B
Nix
Raw Permalink Normal View History

2022-07-22 15:11:39 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
((pkgs.emacsPackagesFor pkgs.emacs).emacsWithPackages
(epkgs: [ pkgs.emacs28Packages.geiser-chez ]))
pkgs.chez
];
}