From 2eb90cbca1c5a45243008912684cd9ea71d304c6 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sat, 11 Jul 2020 21:32:12 -0400 Subject: feat(owothia): Add owothia Add owothia, an irc bot that picks a random verb out of a random subset of messages and replies with a message of the form " me owo". it's incredibly messy, full of warnings, includes a *number* of harcoded things, but also is hilarious. Change-Id: I73cacd533bbbff9e753d1e542308da25247a7034 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1063 Tested-by: BuildkiteCI Reviewed-by: lukegb --- users/glittershark/owothia/shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 users/glittershark/owothia/shell.nix (limited to 'users/glittershark/owothia/shell.nix') diff --git a/users/glittershark/owothia/shell.nix b/users/glittershark/owothia/shell.nix new file mode 100644 index 0000000000..9446a353d5 --- /dev/null +++ b/users/glittershark/owothia/shell.nix @@ -0,0 +1,14 @@ +args@{ pkgs ? (import ../../../. {}).third_party, ... }: + +((import ./packageSet.nix args).extend (pkgs.haskell.lib.packageSourceOverrides { + owothia = pkgs.gitignoreSource ./.; +})).shellFor { + packages = p: [p.owothia]; + withHoogle = true; + doBenchmark = true; + buildInputs = with pkgs.haskellPackages; [ + cabal-install + hlint + pkgs.haskell-language-server.ghc883 + ]; +} -- cgit 1.4.1