This commit is contained in:
Dmitry Zuikov 2024-08-30 15:30:09 +03:00
parent ec4f9b6dce
commit 1ffdfbe716
3 changed files with 9 additions and 1 deletions

View File

@ -9,6 +9,10 @@ constraints:
, suckless-conf >= 0.1.2.7
, http-client >=0.7.16 && <0.8
haddock-hoogle: true
haddock-html: true
-- executable-static: True
-- profiling: True
-- library-profiling: False

View File

@ -48,7 +48,7 @@ import System.IO.Temp as Temp
import System.IO qualified as IO
{- HLINT Ignore "Functor law" -}
{- HLINT ignore "Functor law" -}
withFixmeCLI :: FixmePerks m => FixmeEnv -> FixmeM m a -> m a
withFixmeCLI env m = do
@ -222,6 +222,8 @@ runTop forms = do
atomically $ writeTVar t action
_ -> throwIO $ BadFormException @C nil
entry $ bindMatch "fixme-def-context" $ nil_ \case
[LitIntVal a, LitIntVal b] -> do
t <- lift $ asks fixmeEnvCatContext

View File

@ -105,6 +105,8 @@ outputs = { self, nixpkgs, haskell-flake-utils, ... }@inputs:
];
shellWithHoogle = true;
shell = {pkgs, ...}:
pkgs.haskellPackages.shellFor {
packages = _: pkgs.lib.attrsets.attrVals packageNames pkgs.haskellPackages;