update package definitions
This commit is contained in:
parent
5e95901f7e
commit
221d4bf79b
2 changed files with 22 additions and 18 deletions
|
@ -75,12 +75,12 @@ library
|
||||||
TypeSynonymInstances
|
TypeSynonymInstances
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base ^>=4.14.1.0
|
base >=4.14.1.0
|
||||||
, text ^>=1.2.4.1
|
, text >=1.2.4.1
|
||||||
, time ^>=1.9.3
|
, time >=1.9.3
|
||||||
, mtl ^>=2.2.2
|
, mtl >=2.2.2
|
||||||
, containers ^>=0.6.2.1
|
, containers >=0.6.2.1
|
||||||
, bytestring ^>=0.10.12.0
|
, bytestring >=0.10.12.0
|
||||||
, base16-bytestring
|
, base16-bytestring
|
||||||
, base64-bytestring
|
, base64-bytestring
|
||||||
, random-bytestring
|
, random-bytestring
|
||||||
|
@ -125,13 +125,13 @@ executable mateamt
|
||||||
TypeSynonymInstances
|
TypeSynonymInstances
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base ^>=4.14.1.0
|
base >=4.14.1.0
|
||||||
, mateamt
|
, mateamt
|
||||||
, text ^>=1.2.4.1
|
, text >=1.2.4.1
|
||||||
, time ^>=1.9.3
|
, time >=1.9.3
|
||||||
, mtl ^>=2.2.2
|
, mtl >=2.2.2
|
||||||
, containers ^>=0.6.2.1
|
, containers >=0.6.2.1
|
||||||
, bytestring ^>=0.10.12.0
|
, bytestring >=0.10.12.0
|
||||||
, base16-bytestring
|
, base16-bytestring
|
||||||
, opaleye
|
, opaleye
|
||||||
, postgresql-simple
|
, postgresql-simple
|
||||||
|
@ -161,13 +161,13 @@ test-suite mateamt-test
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
main-is: TestMain.hs
|
main-is: TestMain.hs
|
||||||
build-depends:
|
build-depends:
|
||||||
base ^>=4.14.1.0
|
base >=4.14.1.0
|
||||||
, mateamt
|
, mateamt
|
||||||
, text ^>=1.2.4.1
|
, text >=1.2.4.1
|
||||||
, time ^>=1.9.3
|
, time >=1.9.3
|
||||||
, mtl ^>=2.2.2
|
, mtl >=2.2.2
|
||||||
, containers ^>=0.6.2.1
|
, containers >=0.6.2.1
|
||||||
, bytestring ^>=0.10.12.0
|
, bytestring >=0.10.12.0
|
||||||
, hspec
|
, hspec
|
||||||
, hspec-wai
|
, hspec-wai
|
||||||
, hspec-wai-json
|
, hspec-wai-json
|
||||||
|
|
|
@ -8,6 +8,10 @@ let
|
||||||
mateamt = hself.callCabal2nix "mateamt" (gitignore ./.) {};
|
mateamt = hself.callCabal2nix "mateamt" (gitignore ./.) {};
|
||||||
pg-transact = with pkgs.haskell.lib;
|
pg-transact = with pkgs.haskell.lib;
|
||||||
doJailbreak (unmarkBroken (dontCheck hsuper.pg-transact));
|
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;
|
gitignore = dir: pkgs.nix-gitignore.gitignoreSource [] dir;
|
||||||
|
|
Loading…
Reference in a new issue