Skip to content

Commit 1df2ba7

Browse files
author
IOHK
committed
Automatic Update
1 parent 65f65bd commit 1df2ba7

File tree

51 files changed

+2330
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2330
-18
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "HStringTemplate"; version = "0.8.8"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Sterling Clover";
19+
homepage = "";
20+
url = "";
21+
synopsis = "StringTemplate implementation in Haskell.";
22+
description = "A port of the Java library by Terrence Parr.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
30+
(hsPkgs."blaze-builder" or (errorHandler.buildDepError "blaze-builder"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
33+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
34+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
35+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
36+
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
37+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
38+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
39+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
40+
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
41+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
42+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
43+
(hsPkgs."syb" or (errorHandler.buildDepError "syb"))
44+
(hsPkgs."void" or (errorHandler.buildDepError "void"))
45+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
46+
];
47+
buildable = true;
48+
};
49+
tests = {
50+
"test" = {
51+
depends = [
52+
(hsPkgs."HStringTemplate" or (errorHandler.buildDepError "HStringTemplate"))
53+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
54+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
55+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
56+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
57+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
58+
];
59+
buildable = true;
60+
};
61+
};
62+
};
63+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "HStringTemplate"; version = "0.8.8"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Sterling Clover";
19+
homepage = "";
20+
url = "";
21+
synopsis = "StringTemplate implementation in Haskell.";
22+
description = "A port of the Java library by Terrence Parr.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
30+
(hsPkgs."blaze-builder" or (errorHandler.buildDepError "blaze-builder"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
33+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
34+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
35+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
36+
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
37+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
38+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
39+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
40+
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
41+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
42+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
43+
(hsPkgs."syb" or (errorHandler.buildDepError "syb"))
44+
(hsPkgs."void" or (errorHandler.buildDepError "void"))
45+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
46+
];
47+
buildable = true;
48+
};
49+
tests = {
50+
"test" = {
51+
depends = [
52+
(hsPkgs."HStringTemplate" or (errorHandler.buildDepError "HStringTemplate"))
53+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
54+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
55+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
56+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
57+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
58+
];
59+
buildable = true;
60+
};
61+
};
62+
};
63+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.12";
14+
identifier = { name = "autodocodec"; version = "0.2.3.0"; };
15+
license = "MIT";
16+
copyright = "2021-2023 Tom Sydney Kerckhove";
17+
maintainer = "[email protected]";
18+
author = "Tom Sydney Kerckhove";
19+
homepage = "https://github.com/NorfairKing/autodocodec#readme";
20+
url = "";
21+
synopsis = "Self-documenting encoder and decoder";
22+
description = "";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
32+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
33+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
34+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
35+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
36+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
37+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
38+
(hsPkgs."validity" or (errorHandler.buildDepError "validity"))
39+
(hsPkgs."validity-scientific" or (errorHandler.buildDepError "validity-scientific"))
40+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
41+
];
42+
buildable = true;
43+
};
44+
tests = {
45+
"autodocodec-doctest" = {
46+
depends = [
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
49+
];
50+
buildable = true;
51+
};
52+
};
53+
};
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.12";
14+
identifier = { name = "autodocodec-schema"; version = "0.1.0.4"; };
15+
license = "MIT";
16+
copyright = "2021-2024 Tom Sydney Kerckhove";
17+
maintainer = "[email protected]";
18+
author = "Tom Sydney Kerckhove";
19+
homepage = "https://github.com/NorfairKing/autodocodec#readme";
20+
url = "";
21+
synopsis = "Autodocodec interpreters for JSON Schema";
22+
description = "";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
29+
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
32+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
33+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
34+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
35+
(hsPkgs."validity" or (errorHandler.buildDepError "validity"))
36+
(hsPkgs."validity-aeson" or (errorHandler.buildDepError "validity-aeson"))
37+
(hsPkgs."validity-containers" or (errorHandler.buildDepError "validity-containers"))
38+
(hsPkgs."validity-text" or (errorHandler.buildDepError "validity-text"))
39+
];
40+
buildable = true;
41+
};
42+
};
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.12";
14+
identifier = { name = "autodocodec-yaml"; version = "0.3.0.0"; };
15+
license = "MIT";
16+
copyright = "2021-2023 Tom Sydney Kerckhove";
17+
maintainer = "[email protected]";
18+
author = "Tom Sydney Kerckhove";
19+
homepage = "https://github.com/NorfairKing/autodocodec#readme";
20+
url = "";
21+
synopsis = "Autodocodec interpreters for yaml";
22+
description = "";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
29+
(hsPkgs."autodocodec-schema" or (errorHandler.buildDepError "autodocodec-schema"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
33+
(hsPkgs."path" or (errorHandler.buildDepError "path"))
34+
(hsPkgs."path-io" or (errorHandler.buildDepError "path-io"))
35+
(hsPkgs."safe-coloured-text" or (errorHandler.buildDepError "safe-coloured-text"))
36+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
39+
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
40+
];
41+
buildable = true;
42+
};
43+
};
44+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "bytestring-lexing"; version = "0.5.0.12"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2012–2023 wren romano, 2008–2011 Don Stewart";
17+
maintainer = "[email protected]";
18+
author = "wren gayle romano, Don Stewart";
19+
homepage = "https://wrengr.org/software/hackage.html";
20+
url = "";
21+
synopsis = "Efficiently parse and produce common integral and fractional numbers.";
22+
description = "The bytestring-lexing package offers extremely efficient `ByteString`\nparsers for some common lexemes: namely integral and fractional\nnumbers. In addition, it provides efficient serializers for (some\nof) the formats it parses.\n\nAs of version 0.3.0, bytestring-lexing offers the best-in-show\nparsers for integral values. (According to the Warp web server's\nbenchmark of parsing the Content-Length field of HTTP headers.) And\nas of version 0.5.0 it offers (to my knowledge) the best-in-show\nparser for fractional/floating numbers.\n\nSome benchmarks for this package can be found at:\n<https://github.com/wrengr/bytestring-lexing/tree/master/bench/html>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
30+
];
31+
buildable = true;
32+
};
33+
tests = {
34+
"test-all" = {
35+
depends = [
36+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
37+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
38+
(hsPkgs."bytestring-lexing" or (errorHandler.buildDepError "bytestring-lexing"))
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."tasty-smallcheck" or (errorHandler.buildDepError "tasty-smallcheck"))
41+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
};
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "conduit-aeson"; version = "0.1.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2021-2022 Alexey Kuleshevich";
17+
maintainer = "[email protected]";
18+
author = "Alexey Kuleshevich";
19+
homepage = "https://github.com/lehins/conduit-aeson";
20+
url = "";
21+
synopsis = "Short description";
22+
description = "Please see the README on GitHub at <https://github.com/lehins/conduit-aeson#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
29+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
33+
(hsPkgs."conduit-extra" or (errorHandler.buildDepError "conduit-extra"))
34+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
35+
];
36+
buildable = true;
37+
};
38+
tests = {
39+
"doctests" = {
40+
depends = [
41+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
42+
] ++ pkgs.lib.optionals (compiler.isGhc && compiler.version.ge "8.2") [
43+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
44+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
45+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
46+
(hsPkgs."conduit-aeson" or (errorHandler.buildDepError "conduit-aeson"))
47+
(hsPkgs."doctest-parallel" or (errorHandler.buildDepError "doctest-parallel"))
48+
];
49+
buildable = true;
50+
};
51+
"tests" = {
52+
depends = [
53+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
54+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
55+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
56+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
57+
(hsPkgs."conduit-aeson" or (errorHandler.buildDepError "conduit-aeson"))
58+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
59+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
60+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
61+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
62+
];
63+
build-tools = [
64+
(hsPkgs.buildPackages.hspec-discover.components.exes.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
65+
];
66+
buildable = true;
67+
};
68+
};
69+
};
70+
}

0 commit comments

Comments
 (0)