Massage version bounds

This commit is contained in:
Gregor Kleen 2018-02-20 18:55:00 +01:00
parent a4ba0b193a
commit bda336b10b
8 changed files with 44 additions and 44 deletions

4
.gitignore vendored
View File

@ -2,11 +2,15 @@
**/result* **/result*
**/.stack-work **/.stack-work
**/dist **/dist
**/.cabal-sandbox
**/cabal.sandbox.config
cryptoids/cryptoids.cabal cryptoids/cryptoids.cabal
cryptoids/cryptoids.nix cryptoids/cryptoids.nix
cryptoids-types/cryptoids-types.cabal cryptoids-types/cryptoids-types.cabal
cryptoids-types/cryptoids-types.nix cryptoids-types/cryptoids-types.nix
cryptoids-class/cryptoids-class.cabal
cryptoids-class/cryptoids-class.nix
filepath-crypto/filepath-crypto.cabal filepath-crypto/filepath-crypto.cabal
filepath-crypto/filepath-crypto.nix filepath-crypto/filepath-crypto.nix
uuid-crypto/uuid-crypto.cabal uuid-crypto/uuid-crypto.cabal

View File

@ -24,9 +24,9 @@ ghc-options:
- -fno-warn-name-shadowing - -fno-warn-name-shadowing
dependencies: dependencies:
- base - base >=4.9 && <5
- cryptoids-types - cryptoids-types >=0.0.0 && <0.1
- exceptions - exceptions >=0.8.3 && <0.9
library: library:
source-dirs: src source-dirs: src

View File

@ -22,10 +22,10 @@ ghc-options:
- -fno-warn-name-shadowing - -fno-warn-name-shadowing
dependencies: dependencies:
- base - base >=4.9 && <5
- binary - binary >=0.8.3 && <0.9
- path-pieces - path-pieces >=0.2.1 && <0.3
- http-api-data - http-api-data >=0.3.7 && <0.4
library: library:
source-dirs: src source-dirs: src

View File

@ -24,16 +24,16 @@ ghc-options:
- -Wall - -Wall
- -fno-warn-name-shadowing - -fno-warn-name-shadowing
dependencies: dependencies:
- base - base >=4.9 && <5
- cryptoids-types - cryptoids-types >=0.0 && <0.1
- cryptoids-class - cryptoids-class >=0.0 && <0.1
- cryptonite - cryptonite >=0.23 && <0.25
- bytestring - bytestring >=0.10.8 && <0.11
- binary - binary >=0.8.3 && <0.9
- memory - memory >=0.14.6 && <0.15
- exceptions - exceptions >=0.8.3 && <0.9
- filepath - filepath >=1.4.1 && <1.5
- directory - directory >=1.3.0 && <1.4
library: library:
source-dirs: src source-dirs: src

View File

@ -29,17 +29,17 @@ ghc-options:
- -Wall - -Wall
- -fno-warn-name-shadowing - -fno-warn-name-shadowing
dependencies: dependencies:
- base - base >=4.9 && <5
- cryptoids-types - cryptoids-types >=0.0.0 && <0.1
- cryptoids-class - cryptoids-class >=0.0.0 && <0.1
- cryptoids - cryptoids >=0.5 && <0.6
- filepath - filepath >=1.4.1 && <1.5
- sandi - sandi >=0.4.0 && <0.5
- case-insensitive - case-insensitive >=1.2.0 && <1.3
- binary - binary >=0.8.3 && <0.9
- bytestring - bytestring >=0.10.8 && <0.11
- exceptions - exceptions >=0.8.3 && <0.9
- template-haskell - template-haskell >=2.11.1 && <2.13
library: library:
source-dirs: src source-dirs: src

View File

@ -4,10 +4,7 @@ let
inherit (nixpkgs) haskell pkgs; inherit (nixpkgs) haskell pkgs;
in haskell.lib.buildStackProject { in haskell.lib.buildStackProject {
inherit ghc; inherit ghc;
name = ''stackenv-uuid-crypto''; name = ''stackenv-cryptoids'';
buildInputs = with pkgs; buildInputs = with pkgs;
[ postgresql zlib.dev ncurses.dev [];
haskellPackages.yesod-bin haskellPackages.happy
haskellPackages.alex
];
} }

View File

@ -15,7 +15,7 @@
# resolver: # resolver:
# name: custom-snapshot # name: custom-snapshot
# location: "./custom-snapshot.yaml" # location: "./custom-snapshot.yaml"
resolver: lts-10.3 resolver: lts-10.5
# User packages to be built. # User packages to be built.
# Various formats can be used as shown in the example below. # Various formats can be used as shown in the example below.
@ -43,8 +43,7 @@ packages:
- filepath-crypto - filepath-crypto
# Dependency packages to be pulled from upstream that are not in the resolver # Dependency packages to be pulled from upstream that are not in the resolver
# (e.g., acme-missiles-0.3) # (e.g., acme-missiles-0.3)
extra-deps: extra-deps: []
- regex-compat-0.93.1
# Override default flag values for local packages and extra-deps # Override default flag values for local packages and extra-deps
flags: {} flags: {}

View File

@ -29,14 +29,14 @@ ghc-options:
- -Wall - -Wall
- -fno-warn-name-shadowing - -fno-warn-name-shadowing
dependencies: dependencies:
- base - base >=4.9 && <5
- cryptoids-types - cryptoids-types >=0.0.0 && <0.1
- cryptoids-class - cryptoids-class >=0.0.0 && <0.1
- cryptoids - cryptoids >=0.5 && <0.6
- uuid - uuid >=1.3.13 && <1.4
- binary - bytestring >=0.10.8 && <0.11
- bytestring - binary >=0.8.3 && <0.9
- exceptions - exceptions >=0.8.3 && <0.9
library: library:
source-dirs: src source-dirs: src