aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-06 13:42:44 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-06 13:42:44 +0100
commit542fe6edb8ff35907f06b20182bb8692c357f29b (patch)
tree4c1d80d7908fc8ddaa41964723fb9981e975d50d /shell.nix
init
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..9c54f99
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> { } }:
+pkgs.mkShell {
+ buildInputs = [
+ pkgs.cabal-install
+ pkgs.ormolu
+ ];
+}