-
-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean build against nightly-2023-04-14 (#1675)
- Loading branch information
Showing
19 changed files
with
84 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
let reflex-platform = import (builtins.fetchTarball | ||
{ name = "reflex-platform"; | ||
url = "https://github.com/reflex-frp/reflex-platform/archive/1aba6f367982bd6dd78ec2fda75ab246a62d32c5.tar.gz"; | ||
}) {}; | ||
pkgs = import ./nix/nixpkgs.nix; in | ||
let | ||
reflex-platform = import (builtins.fetchTarball { | ||
name = "reflex-platform"; | ||
url = "https://github.com/reflex-frp/reflex-platform/archive/1aba6f367982bd6dd78ec2fda75ab246a62d32c5.tar.gz"; | ||
}) {}; | ||
|
||
pkgs = import ./nix/nixpkgs.nix; | ||
|
||
in | ||
|
||
pkgs.stdenv.mkDerivation { | ||
name = "ghcjs-shell"; | ||
buildInputs = | ||
[ (reflex-platform.ghcjs.ghcWithPackages (p: with p; [ | ||
attoparsec | ||
hashable | ||
])) | ||
pkgs.cabal-install | ||
pkgs.gmp | ||
pkgs.haskellPackages.cabal-plan | ||
pkgs.haskellPackages.hspec-discover | ||
pkgs.nodejs | ||
pkgs.perl | ||
pkgs.zlib | ||
]; | ||
buildInputs = [ | ||
(reflex-platform.ghcjs.ghcWithPackages (p: with p; [ | ||
attoparsec | ||
hashable | ||
])) | ||
] ++ (with pkgs; [ | ||
cabal-install | ||
gmp | ||
haskellPackages.cabal-plan | ||
haskellPackages.hspec-discover | ||
nodejs | ||
perl | ||
zlib | ||
openssl | ||
openssl.dev | ||
postgresql | ||
]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -50,7 +50,7 @@ test-suite spec | |
test | ||
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 | ||
|
||
-- dependencies with bounds inherited from the library stanza | ||
build-depends: | ||
|
@@ -62,7 +62,7 @@ test-suite spec | |
|
||
-- test dependencies | ||
build-depends: | ||
hspec >= 2.5.5 && < 2.10 | ||
hspec >= 2.5.5 && < 2.11 | ||
, QuickCheck >= 2.11.3 && < 2.15 | ||
, aeson >= 1.3.1.1 && < 3 | ||
, bytestring >= 0.10.6.0 && < 0.12 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
build-type: Custom | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -64,7 +64,7 @@ test-suite spec | |
test | ||
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 | ||
|
||
-- dependencies with bounds inherited from the library stanza | ||
build-depends: | ||
|
@@ -78,7 +78,7 @@ test-suite spec | |
-- test dependencies | ||
build-depends: | ||
servant-auth-docs | ||
, hspec >= 2.5.5 && < 2.10 | ||
, hspec >= 2.5.5 && < 2.11 | ||
, QuickCheck >= 2.11.3 && < 2.15 | ||
|
||
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -102,7 +102,7 @@ test-suite spec | |
test | ||
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 | ||
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 | ||
|
||
-- dependencies with bounds inherited from the library stanza | ||
build-depends: | ||
|
@@ -123,7 +123,7 @@ test-suite spec | |
-- test dependencies | ||
build-depends: | ||
servant-auth-server | ||
, hspec >= 2.5.5 && < 2.10 | ||
, hspec >= 2.5.5 && < 2.11 | ||
, QuickCheck >= 2.11.3 && < 2.15 | ||
, http-client >= 0.5.13.1 && < 0.8 | ||
, lens-aeson >= 1.0.2 && < 1.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -49,7 +49,7 @@ test-suite spec | |
test | ||
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-tool-depends: hspec-discover:hspec-discover >= 2.5.5 && <2.10 | ||
build-tool-depends: hspec-discover:hspec-discover >= 2.5.5 && <2.11 | ||
-- dependencies with bounds inherited from the library stanza | ||
build-depends: | ||
base | ||
|
@@ -63,7 +63,7 @@ test-suite spec | |
-- test dependencies | ||
build-depends: | ||
servant-auth-swagger | ||
, hspec >= 2.5.5 && < 2.10 | ||
, hspec >= 2.5.5 && < 2.11 | ||
, QuickCheck >= 2.11.3 && < 2.15 | ||
other-modules: | ||
Servant.Auth.SwaggerSpec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
, GHCJS ==8.6.0.1 | ||
|
||
extra-source-files: | ||
|
@@ -104,8 +104,8 @@ test-suite spec | |
-- Additional dependencies | ||
build-depends: | ||
deepseq >= 1.4.2.0 && < 1.5 | ||
, hspec >= 2.6.0 && < 2.10 | ||
, hspec >= 2.6.0 && < 2.11 | ||
, QuickCheck >= 2.12.6.1 && < 2.15 | ||
|
||
build-tool-depends: | ||
hspec-discover:hspec-discover >= 2.6.0 && <2.10 | ||
hspec-discover:hspec-discover >= 2.6.0 && <2.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
, GHCJS ==8.6.0.1 | ||
|
||
extra-source-files: | ||
|
@@ -124,15 +124,15 @@ test-suite spec | |
-- Additional dependencies | ||
build-depends: | ||
entropy >= 0.4.1.3 && < 0.5 | ||
, hspec >= 2.6.0 && < 2.10 | ||
, hspec >= 2.6.0 && < 2.11 | ||
, HUnit >= 1.6.0.0 && < 1.7 | ||
, network >= 2.8.0.0 && < 3.2 | ||
, QuickCheck >= 2.12.6.1 && < 2.15 | ||
, servant == 0.19.* | ||
, servant-server == 0.19.* | ||
|
||
build-tool-depends: | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.10 | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.11 | ||
|
||
test-suite readme | ||
type: exitcode-stdio-1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2018-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2015-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -74,7 +74,7 @@ test-suite spec | |
|
||
-- Additional dependencies | ||
build-depends: | ||
hspec >= 2.6.0 && <2.10 | ||
hspec >= 2.6.0 && <2.11 | ||
build-tool-depends: | ||
hspec-discover:hspec-discover >=2.6.0 && <2.10 | ||
hspec-discover:hspec-discover >=2.6.0 && <2.11 | ||
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -112,15 +112,15 @@ test-suite spec | |
-- Additional dependencies | ||
build-depends: | ||
entropy >= 0.4.1.3 && < 0.5 | ||
, hspec >= 2.6.0 && < 2.10 | ||
, hspec >= 2.6.0 && < 2.11 | ||
, HUnit >= 1.6.0.0 && < 1.7 | ||
, network >= 2.8.0.0 && < 3.2 | ||
, QuickCheck >= 2.12.6.1 && < 2.15 | ||
, servant == 0.19.* | ||
, servant-server == 0.19.* | ||
|
||
build-tool-depends: | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.10 | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.11 | ||
|
||
test-suite readme | ||
type: exitcode-stdio-1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.3 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -159,12 +159,12 @@ test-suite spec | |
build-depends: | ||
aeson >= 1.4.1.0 && < 3 | ||
, directory >= 1.3.0.0 && < 1.4 | ||
, hspec >= 2.6.0 && < 2.10 | ||
, hspec >= 2.6.0 && < 2.11 | ||
, hspec-wai >= 0.10.1 && < 0.12 | ||
, QuickCheck >= 2.12.6.1 && < 2.15 | ||
, should-not-typecheck >= 2.1.0 && < 2.2 | ||
, temporary >= 1.3 && < 1.4 | ||
, wai-extra >= 3.0.24.3 && < 3.2 | ||
|
||
build-tool-depends: | ||
hspec-discover:hspec-discover >= 2.6.0 && <2.10 | ||
hspec-discover:hspec-discover >= 2.6.0 && <2.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ maintainer: [email protected] | |
copyright: (c) 2015-2018, Servant contributors | ||
category: Web, Servant, Swagger | ||
build-type: Custom | ||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
|
||
extra-source-files: | ||
README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ maintainer: [email protected] | |
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
|
||
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
, GHCJS ==8.6.0.1 | ||
|
||
extra-source-files: | ||
|
@@ -167,9 +167,9 @@ test-suite spec | |
|
||
-- Additional dependencies | ||
build-depends: | ||
hspec >= 2.6.0 && < 2.10 | ||
hspec >= 2.6.0 && < 2.11 | ||
, QuickCheck >= 2.12.6.1 && < 2.15 | ||
, quickcheck-instances >= 0.3.19 && < 0.4 | ||
|
||
build-tool-depends: | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.10 | ||
hspec-discover:hspec-discover >= 2.6.0 && < 2.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.