We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366f2bb commit ecedbb2Copy full SHA for ecedbb2
.envrc
@@ -0,0 +1 @@
1
+use_nix
shell.nix
@@ -0,0 +1,11 @@
+{ pkgs ? import <nixpkgs> {} }:
2
+ pkgs.mkShell {
3
+ # nativeBuildInputs is usually what you want -- tools you need to run
4
+ nativeBuildInputs = [
5
+ pkgs.racket-minimal
6
+ ];
7
+
8
+ shellHook = ''
9
+ echo starting...
10
+ '';
11
+}
0 commit comments