Create shell.nix
This commit is contained in:
parent
7c525d69c1
commit
62e2928693
17
shell.nix
Normal file
17
shell.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
let
|
||||||
|
emacsOverlay = (import (builtins.fetchGit {
|
||||||
|
url = "https://github.com/nix-community/emacs-overlay.git";
|
||||||
|
ref = "master";
|
||||||
|
rev = "bfc8f6edcb7bcf3cf24e4a7199b3f6fed96aaecf"; # change the revision
|
||||||
|
}));
|
||||||
|
pkgs = import <nixpkgs> {overlays = [emacsOverlay] ;};
|
||||||
|
in with pkgs;
|
||||||
|
mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
pkgs.emacs
|
||||||
|
(agda.withPackages (ps: [
|
||||||
|
ps.standard-library
|
||||||
|
ps.cubical
|
||||||
|
]))
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user