Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Jul 22, 2024
1 parent 0e72b22 commit 5868e73
Show file tree
Hide file tree
Showing 30 changed files with 1,004 additions and 0 deletions.
3 changes: 3 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8619,6 +8619,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"htoml-megaparsec" = import ./nix/htoml-megaparsec.nix;
"htoml-parse" = import ./nix/htoml-parse.nix;
"htrace" = import ./nix/htrace.nix;
"htree" = import ./nix/htree.nix;
"hts" = import ./nix/hts.nix;
"htsn" = import ./nix/htsn.nix;
"htsn-common" = import ./nix/htsn-common.nix;
Expand All @@ -8629,6 +8630,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"http-api-data-ip" = import ./nix/http-api-data-ip.nix;
"http-api-data-qq" = import ./nix/http-api-data-qq.nix;
"http-attoparsec" = import ./nix/http-attoparsec.nix;
"http-barf" = import ./nix/http-barf.nix;
"http-client" = import ./nix/http-client.nix;
"http-client-auth" = import ./nix/http-client-auth.nix;
"http-client-brread-timeout" = import ./nix/http-client-brread-timeout.nix;
Expand Down Expand Up @@ -8942,6 +8944,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"ihaskell-rlangqq" = import ./nix/ihaskell-rlangqq.nix;
"ihaskell-widgets" = import ./nix/ihaskell-widgets.nix;
"ihp-hsx" = import ./nix/ihp-hsx.nix;
"ihp-openai" = import ./nix/ihp-openai.nix;
"ihs" = import ./nix/ihs.nix;
"ihttp" = import ./nix/ihttp.nix;
"ilist" = import ./nix/ilist.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.4";
identifier = { name = "Hangman"; version = "0.10.0.0"; };
license = "MIT";
copyright = "";
maintainer = "[email protected]";
author = "lf94";
homepage = "";
url = "";
synopsis = "The classic game of Hangman";
description = "";
buildType = "Simple";
};
components = {
exes = {
"Hangman" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "autodocodec-openapi3"; version = "0.2.1.2"; };
license = "MIT";
copyright = "2021-2022 Tom Sydney Kerckhove";
maintainer = "[email protected]";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for openapi3";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."insert-ordered-containers" or (errorHandler.buildDepError "insert-ordered-containers"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."openapi3" or (errorHandler.buildDepError "openapi3"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "autodocodec-schema"; version = "0.1.0.5"; };
license = "MIT";
copyright = "2021-2024 Tom Sydney Kerckhove";
maintainer = "[email protected]";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for JSON Schema";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."validity" or (errorHandler.buildDepError "validity"))
(hsPkgs."validity-aeson" or (errorHandler.buildDepError "validity-aeson"))
(hsPkgs."validity-containers" or (errorHandler.buildDepError "validity-containers"))
(hsPkgs."validity-text" or (errorHandler.buildDepError "validity-text"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = {
name = "autodocodec-servant-multipart";
version = "0.0.0.1";
};
license = "MIT";
copyright = "2022 Tom Sydney Kerckhove";
maintainer = "[email protected]";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for Servant Multipart";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."servant-multipart" or (errorHandler.buildDepError "servant-multipart"))
(hsPkgs."servant-multipart-api" or (errorHandler.buildDepError "servant-multipart-api"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "autodocodec-swagger2"; version = "0.0.1.2"; };
license = "MIT";
copyright = "2021 Tom Sydney Kerckhove";
maintainer = "[email protected]";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for swagger2";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."insert-ordered-containers" or (errorHandler.buildDepError "insert-ordered-containers"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."swagger2" or (errorHandler.buildDepError "swagger2"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "autodocodec-yaml"; version = "0.3.0.1"; };
license = "MIT";
copyright = "2021-2023 Tom Sydney Kerckhove";
maintainer = "[email protected]";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for yaml";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."autodocodec-schema" or (errorHandler.buildDepError "autodocodec-schema"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."path" or (errorHandler.buildDepError "path"))
(hsPkgs."path-io" or (errorHandler.buildDepError "path-io"))
(hsPkgs."safe-coloured-text" or (errorHandler.buildDepError "safe-coloured-text"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "curryer-rpc"; version = "0.3.6"; };
license = "LicenseRef-PublicDomain";
copyright = "";
maintainer = "[email protected]";
author = "AgentM";
homepage = "https://github.com/agentm/curryer";
url = "";
synopsis = "Fast, Haskell RPC";
description = "Haskell-to-Haskell RPC using Winery serialization.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."winery" or (errorHandler.buildDepError "winery"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."streamly" or (errorHandler.buildDepError "streamly"))
(hsPkgs."streamly-core" or (errorHandler.buildDepError "streamly-core"))
(hsPkgs."streamly-bytestring" or (errorHandler.buildDepError "streamly-bytestring"))
(hsPkgs."network" or (errorHandler.buildDepError "network"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."uuid" or (errorHandler.buildDepError "uuid"))
(hsPkgs."fast-builder" or (errorHandler.buildDepError "fast-builder"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."stm-containers" or (errorHandler.buildDepError "stm-containers"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."network-byte-order" or (errorHandler.buildDepError "network-byte-order"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
];
buildable = true;
};
exes = {
"SimpleKeyValueServer" = {
depends = [
(hsPkgs."stm-containers" or (errorHandler.buildDepError "stm-containers"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."curryer-rpc" or (errorHandler.buildDepError "curryer-rpc"))
(hsPkgs."winery" or (errorHandler.buildDepError "winery"))
];
buildable = true;
};
"SimpleKeyValueClient" = {
depends = [
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."curryer-rpc" or (errorHandler.buildDepError "curryer-rpc"))
(hsPkgs."winery" or (errorHandler.buildDepError "winery"))
(hsPkgs."optparse-generic" or (errorHandler.buildDepError "optparse-generic"))
];
buildable = true;
};
};
tests = {
"test" = {
depends = [
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."curryer-rpc" or (errorHandler.buildDepError "curryer-rpc"))
(hsPkgs."winery" or (errorHandler.buildDepError "winery"))
(hsPkgs."network" or (errorHandler.buildDepError "network"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."streamly-core" or (errorHandler.buildDepError "streamly-core"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."streamly-bytestring" or (errorHandler.buildDepError "streamly-bytestring"))
];
buildable = true;
};
};
benchmarks = {
"perf" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
(hsPkgs."curryer-rpc" or (errorHandler.buildDepError "curryer-rpc"))
(hsPkgs."network" or (errorHandler.buildDepError "network"))
(hsPkgs."winery" or (errorHandler.buildDepError "winery"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 5868e73

Please sign in to comment.