diff options
author | Ben Sima <ben@bsima.me> | 2019-03-27 22:48:00 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-27 22:48:00 -0700 |
commit | 285e1eefe19ac6865bf0ebab388456f23fb480a9 (patch) | |
tree | 7b1284bf549d6b4262c5ae5528de2f17b3966688 | |
parent | 1cfeff547d80eb61a1db8102f06011e73dd2fd9f (diff) |
cleanup
-rwxr-xr-x | chip/make | 8 | ||||
-rw-r--r-- | pack/ibb.nix | 3 |
2 files changed, 7 insertions, 4 deletions
@@ -1,14 +1,16 @@ #!/usr/bin/env runhaskell +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE RecordWildCards #-} +{-# OPTIONS_GHC -Wall #-} + {- -- TODO: rewrite this in using shake -- [ ] https://hackage.haskell.org/package/shake-0.17.7/docs/Development-Shake.html -- [ ] make it optionally run the built program too, like entr -- [ ] generate tags each time it's rebuilt -} -{-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE RecordWildCards #-} -{-# OPTIONS_GHC -Wall #-} +module Main where import Control.Concurrent import Control.Exception diff --git a/pack/ibb.nix b/pack/ibb.nix index 159f403..05d2b7d 100644 --- a/pack/ibb.nix +++ b/pack/ibb.nix @@ -2,11 +2,12 @@ with nixpkgs; let ghc = pkgs.haskell.packages.ghc844.ghcWithPackages (hp: with hp; [ + hinotify + acid-state blaze-html blaze-markup bytestring - hinotify miso MonadRandom protolude |