about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-03T16·40-0400
committerglittershark <grfn@gws.fyi>2020-07-03T16·40+0000
commit73f8121f28aa3e3cdb080fddd77772b86932cdf4 (patch)
tree33fc5d27b090a321fba1182bc5284b547a513cc1
parent284eafe0b583062edac253b2efef72de5080d02e (diff)
feat(gs/home): Some new haskell aliases r/1196
for cabal 3 commands that are runnable without new- or old-

Change-Id: Ib00c8654c40c47482e06aec9dd1454dacce42971
Reviewed-on: https://cl.tvl.fyi/c/depot/+/901
Reviewed-by: glittershark <grfn@gws.fyi>
-rw-r--r--users/glittershark/system/home/modules/development.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/users/glittershark/system/home/modules/development.nix b/users/glittershark/system/home/modules/development.nix
index 8c47d1af4a..d5b7a60d37 100644
--- a/users/glittershark/system/home/modules/development.nix
+++ b/users/glittershark/system/home/modules/development.nix
@@ -156,6 +156,10 @@ with lib;
       "grl" = "git reflog";
 
       # Haskell
+      "cb" = "cabal build";
+      "crl" = "cabal repl";
+      "cr" = "cabal run";
+      "ct" = "cabal run test";
       "cnb" = "cabal new-build";
       "cob" = "cabal old-build";
       "cnr" = "cabal new-run";