diff --git a/mateamt.cabal b/mateamt.cabal index 7bcb547..7371470 100644 --- a/mateamt.cabal +++ b/mateamt.cabal @@ -75,12 +75,12 @@ library TypeSynonymInstances build-depends: - base ^>=4.14.1.0 - , text ^>=1.2.4.1 - , time ^>=1.9.3 - , mtl ^>=2.2.2 - , containers ^>=0.6.2.1 - , bytestring ^>=0.10.12.0 + base >=4.14.1.0 + , text >=1.2.4.1 + , time >=1.9.3 + , mtl >=2.2.2 + , containers >=0.6.2.1 + , bytestring >=0.10.12.0 , base16-bytestring , base64-bytestring , random-bytestring @@ -125,13 +125,13 @@ executable mateamt TypeSynonymInstances build-depends: - base ^>=4.14.1.0 + base >=4.14.1.0 , mateamt - , text ^>=1.2.4.1 - , time ^>=1.9.3 - , mtl ^>=2.2.2 - , containers ^>=0.6.2.1 - , bytestring ^>=0.10.12.0 + , text >=1.2.4.1 + , time >=1.9.3 + , mtl >=2.2.2 + , containers >=0.6.2.1 + , bytestring >=0.10.12.0 , base16-bytestring , opaleye , postgresql-simple @@ -161,13 +161,13 @@ test-suite mateamt-test ghc-options: -Wall main-is: TestMain.hs build-depends: - base ^>=4.14.1.0 + base >=4.14.1.0 , mateamt - , text ^>=1.2.4.1 - , time ^>=1.9.3 - , mtl ^>=2.2.2 - , containers ^>=0.6.2.1 - , bytestring ^>=0.10.12.0 + , text >=1.2.4.1 + , time >=1.9.3 + , mtl >=2.2.2 + , containers >=0.6.2.1 + , bytestring >=0.10.12.0 , hspec , hspec-wai , hspec-wai-json diff --git a/shell.nix b/shell.nix index b88bbf8..3b5fbe6 100644 --- a/shell.nix +++ b/shell.nix @@ -8,6 +8,10 @@ let mateamt = hself.callCabal2nix "mateamt" (gitignore ./.) {}; pg-transact = with pkgs.haskell.lib; doJailbreak (unmarkBroken (dontCheck hsuper.pg-transact)); + hspec-wai-json = with pkgs.haskell.lib; + doJailbreak (unmarkBroken (dontCheck hsuper.hspec-wai-json)); + token-bucket = with pkgs.haskell.lib; + doJailbreak (unmarkBroken (dontCheck hsuper.token-bucket)); }; }; gitignore = dir: pkgs.nix-gitignore.gitignoreSource [] dir;