-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed build of tls package * jailbreak connection * Try a different tls version * fixed connection * Revert "Try a different tls version" This reverts commit b29aca4. * Create http-client-tls.nix * updated nixpkgs * update lockfile * Fixes * Update mkGhcCompiler.nix * Update mkGhcCompiler.nix * fixed graphql tests * updated nixpkgs * Fixed build
- Loading branch information
1 parent
814488e
commit 14c8c40
Showing
9 changed files
with
137 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ mkDerivation, base, containers, criterion, deepseq, dependent-map | ||
, dependent-sum, ghc-prim, ghc-typelits-knownnat, hedgehog, hspec | ||
, hspec-hedgehog, lib, primitive, vector, fetchFromGitHub | ||
}: | ||
mkDerivation { | ||
pname = "typerep-map"; | ||
version = "0.6.0.0"; | ||
libraryHaskellDepends = [ | ||
base containers deepseq ghc-prim primitive vector | ||
]; | ||
testHaskellDepends = [ | ||
base ghc-typelits-knownnat hedgehog hspec hspec-hedgehog | ||
]; | ||
benchmarkHaskellDepends = [ | ||
base criterion deepseq dependent-map dependent-sum | ||
ghc-typelits-knownnat | ||
]; | ||
doHaddock = false; | ||
homepage = "https://github.com/kowainik/typerep-map"; | ||
description = "Efficient implementation of a dependent map with types as keys"; | ||
license = lib.licenses.mpl20; | ||
src = fetchFromGitHub { | ||
owner = "alaendle"; | ||
repo = "typerep-map"; | ||
rev = "444d377fac1d0941721233737ee65b631ea3d056"; | ||
sha256 = "sha256-BU/BvOI920QTW9MCfQyz+8zTRa0Ayx8i6R3matzRAIs"; | ||
}; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ mkDerivation, base, basement, bytestring, containers | ||
, data-default-class, lib, network, socks, tls, x509, x509-store | ||
, x509-system, x509-validation, fetchFromGitHub | ||
, crypton-x509-system | ||
, crypton-x509-validation | ||
, crypton-x509-store | ||
, crypton-x509 | ||
}: | ||
mkDerivation { | ||
pname = "connection"; | ||
version = "0.4.1"; | ||
libraryHaskellDepends = [ | ||
base basement bytestring containers data-default-class network | ||
socks tls x509 x509-store x509-system x509-validation | ||
crypton-x509-system | ||
crypton-x509-validation | ||
crypton-x509-store | ||
crypton-x509 | ||
]; | ||
homepage = "https://github.com/vincenthz/hs-connection"; | ||
description = "Simple and easy network connections API"; | ||
license = lib.licenses.bsd3; | ||
src = fetchFromGitHub { | ||
owner = "vincenthz"; | ||
repo = "hs-connection"; | ||
rev = "1dc000d38963de0e4c3954b27d4fe0e5f1d9cee2"; | ||
sha256 = "sha256-yyKmEYMdCmicz3jSe1UOD/t3Bsgukb9pWeY0NZPP39Q"; | ||
}; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ mkDerivation, base, bytestring, case-insensitive, containers | ||
, crypton, crypton-connection, data-default-class, exceptions | ||
, gauge, hspec, http-client, http-types, lib, memory, network | ||
, network-uri, text, tls, transformers | ||
}: | ||
mkDerivation { | ||
pname = "http-client-tls"; | ||
version = "0.3.6.3"; | ||
sha256 = "15chmlnq0nk2kxhk65r9xdjkzl94k0axcml89a5qkdiffwyzrp1q"; | ||
libraryHaskellDepends = [ | ||
base bytestring case-insensitive containers crypton | ||
crypton-connection data-default-class exceptions http-client | ||
http-types memory network network-uri text tls transformers | ||
]; | ||
testHaskellDepends = [ | ||
base crypton-connection hspec http-client http-types | ||
]; | ||
benchmarkHaskellDepends = [ base gauge http-client ]; | ||
doCheck = false; | ||
homepage = "https://github.com/snoyberg/http-client"; | ||
description = "http-client backend using the connection package and tls library"; | ||
license = lib.licenses.mit; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring | ||
, cereal, crypton, crypton-x509, crypton-x509-store | ||
, crypton-x509-validation, data-default-class, gauge, hourglass | ||
, lib, memory, mtl, network, QuickCheck, tasty, tasty-quickcheck | ||
, transformers, unix-time | ||
}: | ||
mkDerivation { | ||
pname = "tls"; | ||
version = "1.9.0"; | ||
sha256 = "0gj3af9sqd0bw7dpcqfyvbslpxsk2ij00a77kl710fwhw35vj1an"; | ||
libraryHaskellDepends = [ | ||
asn1-encoding asn1-types async base bytestring cereal crypton | ||
crypton-x509 crypton-x509-store crypton-x509-validation | ||
data-default-class memory mtl network transformers unix-time | ||
]; | ||
testHaskellDepends = [ | ||
asn1-types async base bytestring crypton crypton-x509 | ||
crypton-x509-validation data-default-class hourglass QuickCheck | ||
tasty tasty-quickcheck | ||
]; | ||
benchmarkHaskellDepends = [ | ||
asn1-types async base bytestring crypton crypton-x509 | ||
crypton-x509-validation data-default-class gauge hourglass | ||
QuickCheck tasty-quickcheck | ||
]; | ||
homepage = "https://github.com/haskell-tls/hs-tls"; | ||
description = "TLS/SSL protocol native implementation (Server and Client)"; | ||
license = lib.licenses.bsd3; | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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