update package definitions

This commit is contained in:
nek0 2022-04-15 13:59:17 +02:00
parent 5e95901f7e
commit 221d4bf79b
2 changed files with 22 additions and 18 deletions

View File

@ -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

View File

@ -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;