Skip to content

Commit 65e992c

Browse files
author
IOHK
committed
Automatic Update
1 parent 49a85d9 commit 65e992c

File tree

87 files changed

+3476
-3
lines changed

Some content is hidden

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

87 files changed

+3476
-3
lines changed

default.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11126,6 +11126,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1112611126
"mtl-compat" = import ./nix/mtl-compat.nix;
1112711127
"mtl-evil-instances" = import ./nix/mtl-evil-instances.nix;
1112811128
"mtl-extras" = import ./nix/mtl-extras.nix;
11129+
"mtl-misc-yj" = import ./nix/mtl-misc-yj.nix;
1112911130
"mtl-prelude" = import ./nix/mtl-prelude.nix;
1113011131
"mtl-tf" = import ./nix/mtl-tf.nix;
1113111132
"mtl-unleashed" = import ./nix/mtl-unleashed.nix;
@@ -13015,6 +13016,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1301513016
"properties" = import ./nix/properties.nix;
1301613017
"property" = import ./nix/property.nix;
1301713018
"property-list" = import ./nix/property-list.nix;
13019+
"property-matchers" = import ./nix/property-matchers.nix;
1301813020
"proplang" = import ./nix/proplang.nix;
1301913021
"props" = import ./nix/props.nix;
1302013022
"proquint" = import ./nix/proquint.nix;
@@ -13887,6 +13889,9 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1388713889
"ron-schema" = import ./nix/ron-schema.nix;
1388813890
"ron-storage" = import ./nix/ron-storage.nix;
1388913891
"ronn" = import ./nix/ronn.nix;
13892+
"ronn-envparse" = import ./nix/ronn-envparse.nix;
13893+
"ronn-opt-env-conf" = import ./nix/ronn-opt-env-conf.nix;
13894+
"ronn-optparse-applicative" = import ./nix/ronn-optparse-applicative.nix;
1389013895
"roots" = import ./nix/roots.nix;
1389113896
"rope" = import ./nix/rope.nix;
1389213897
"rope-utf16-splay" = import ./nix/rope-utf16-splay.nix;
@@ -15818,6 +15823,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1581815823
"telegram-types" = import ./nix/telegram-types.nix;
1581915824
"telegraph" = import ./nix/telegraph.nix;
1582015825
"teleport" = import ./nix/teleport.nix;
15826+
"telescope" = import ./nix/telescope.nix;
1582115827
"teleshell" = import ./nix/teleshell.nix;
1582215828
"tell" = import ./nix/tell.nix;
1582315829
"tellbot" = import ./nix/tellbot.nix;
@@ -15965,6 +15971,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1596515971
"text-manipulate" = import ./nix/text-manipulate.nix;
1596615972
"text-markup" = import ./nix/text-markup.nix;
1596715973
"text-metrics" = import ./nix/text-metrics.nix;
15974+
"text-misc-yj" = import ./nix/text-misc-yj.nix;
1596815975
"text-normal" = import ./nix/text-normal.nix;
1596915976
"text-offset" = import ./nix/text-offset.nix;
1597015977
"text-plus" = import ./nix/text-plus.nix;
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "acquire"; version = "0.3.6"; };
15+
license = "MIT";
16+
copyright = "(c) 2013 Gabriel Gonzalez, 2018 Metrix.AI, 2020 Nikita Volkov";
17+
maintainer = "Nikita Volkov <[email protected]>";
18+
author = "Nikita Volkov <[email protected]>";
19+
homepage = "https://github.com/metrix-ai/acquire";
20+
url = "";
21+
synopsis = "Abstraction over management of resources";
22+
description = "An implementation of the abstraction suggested in\n<http://www.haskellforall.com/2013/06/the-resource-applicative.html a blog-post by Gabriel Gonzalez>.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
30+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
31+
];
32+
buildable = true;
33+
};
34+
};
35+
}
Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
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 = "chessIO"; version = "0.9.5.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2024 Mario Lang";
17+
maintainer = "[email protected]";
18+
author = "Mario Lang";
19+
homepage = "https://github.com/mlang/chessIO#readme";
20+
url = "";
21+
synopsis = "Basic chess library";
22+
description = "A simple and fast library for generating legal chess moves. Also includes a module for communication with external processes that speak the UCI (Universal Chess Interface) protocol, a PGN parser/pretty printer, and Polyglot opening book support. On top of that, provides a console frontend program (cboard) that can be used to interactively play against UCI engines.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
29+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
32+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
33+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
34+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
35+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
36+
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
37+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
38+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
39+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
40+
(hsPkgs."mono-traversable" or (errorHandler.buildDepError "mono-traversable"))
41+
(hsPkgs."o-clock" or (errorHandler.buildDepError "o-clock"))
42+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
43+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
44+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
45+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
46+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
47+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
48+
(hsPkgs."th-compat" or (errorHandler.buildDepError "th-compat"))
49+
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
50+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
51+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
52+
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
53+
(hsPkgs."vector-instances" or (errorHandler.buildDepError "vector-instances"))
54+
];
55+
buildable = true;
56+
};
57+
exes = {
58+
"cboard" = {
59+
depends = [
60+
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
61+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
62+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
63+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
64+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
65+
(hsPkgs."chessIO" or (errorHandler.buildDepError "chessIO"))
66+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
67+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
68+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
69+
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
70+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
71+
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline"))
72+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
73+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
74+
(hsPkgs."mono-traversable" or (errorHandler.buildDepError "mono-traversable"))
75+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
76+
(hsPkgs."o-clock" or (errorHandler.buildDepError "o-clock"))
77+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
78+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
79+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
80+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
81+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
82+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
83+
(hsPkgs."th-compat" or (errorHandler.buildDepError "th-compat"))
84+
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
85+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
86+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
87+
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
88+
(hsPkgs."vector-instances" or (errorHandler.buildDepError "vector-instances"))
89+
];
90+
buildable = true;
91+
};
92+
"polyplay" = {
93+
depends = [
94+
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
95+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
96+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
97+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
98+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
99+
(hsPkgs."chessIO" or (errorHandler.buildDepError "chessIO"))
100+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
101+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
102+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
103+
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
104+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
105+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
106+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
107+
(hsPkgs."mono-traversable" or (errorHandler.buildDepError "mono-traversable"))
108+
(hsPkgs."o-clock" or (errorHandler.buildDepError "o-clock"))
109+
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
110+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
111+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
112+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
113+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
114+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
115+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
116+
(hsPkgs."th-compat" or (errorHandler.buildDepError "th-compat"))
117+
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
118+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
119+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
120+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
121+
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
122+
(hsPkgs."vector-instances" or (errorHandler.buildDepError "vector-instances"))
123+
];
124+
buildable = true;
125+
};
126+
};
127+
tests = {
128+
"perft" = {
129+
depends = [
130+
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
131+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
132+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
133+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
134+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
135+
(hsPkgs."chessIO" or (errorHandler.buildDepError "chessIO"))
136+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
137+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
138+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
139+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
140+
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
141+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
142+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
143+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
144+
(hsPkgs."mono-traversable" or (errorHandler.buildDepError "mono-traversable"))
145+
(hsPkgs."o-clock" or (errorHandler.buildDepError "o-clock"))
146+
(hsPkgs."parallel" or (errorHandler.buildDepError "parallel"))
147+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
148+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
149+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
150+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
151+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
152+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
153+
(hsPkgs."th-compat" or (errorHandler.buildDepError "th-compat"))
154+
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
155+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
156+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
157+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
158+
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
159+
(hsPkgs."vector-instances" or (errorHandler.buildDepError "vector-instances"))
160+
];
161+
buildable = true;
162+
};
163+
"polyglot" = {
164+
depends = [
165+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
166+
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
167+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
168+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
169+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
170+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
171+
(hsPkgs."chessIO" or (errorHandler.buildDepError "chessIO"))
172+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
173+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
174+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
175+
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
176+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
177+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
178+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
179+
(hsPkgs."mono-traversable" or (errorHandler.buildDepError "mono-traversable"))
180+
(hsPkgs."o-clock" or (errorHandler.buildDepError "o-clock"))
181+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
182+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
183+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
184+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
185+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
186+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
187+
(hsPkgs."th-compat" or (errorHandler.buildDepError "th-compat"))
188+
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
189+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
190+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
191+
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
192+
(hsPkgs."vector-instances" or (errorHandler.buildDepError "vector-instances"))
193+
];
194+
buildable = true;
195+
};
196+
};
197+
};
198+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 = "diagrams-postscript"; version = "1.5.2"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Ryan Yates";
19+
homepage = "https://diagrams.github.io/";
20+
url = "";
21+
synopsis = "Postscript backend for diagrams drawing EDSL";
22+
description = "This package provides a modular backend for rendering\ndiagrams created with the diagrams EDSL using Postscript.\n\n* \"Diagrams.Backend.Postscript.CmdLine\" - Provides\nthe \"mainWith\" interface to render a diagram\nbased on command line options.\n\n* \"Diagrams.Backend.Postscript\" - Provides the\ngeneral API for rendering diagrams using the\nPostscript backend.\n\n* \"Diagrams.Backend.CMYK\" - Special support for CMYK\ncolor attributes.";
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+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
31+
(hsPkgs."diagrams-core" or (errorHandler.buildDepError "diagrams-core"))
32+
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib"))
33+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
34+
(hsPkgs."statestack" or (errorHandler.buildDepError "statestack"))
35+
(hsPkgs."split" or (errorHandler.buildDepError "split"))
36+
(hsPkgs."monoid-extras" or (errorHandler.buildDepError "monoid-extras"))
37+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
38+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
39+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
40+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
41+
];
42+
buildable = true;
43+
};
44+
};
45+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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.10";
14+
identifier = { name = "ekg"; version = "0.4.1.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Johan Tibell <[email protected]>,\nMikhail Glushenkov <[email protected]>";
18+
author = "Johan Tibell";
19+
homepage = "https://github.com/l0negamer/ekg";
20+
url = "";
21+
synopsis = "Remote monitoring of processes";
22+
description = "This library lets you remotely monitor a running process over HTTP.\nIt provides a simple way to integrate a monitoring server into any\napplication.";
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."ekg-core" or (errorHandler.buildDepError "ekg-core"))
32+
(hsPkgs."ekg-json" or (errorHandler.buildDepError "ekg-json"))
33+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
34+
(hsPkgs."network" or (errorHandler.buildDepError "network"))
35+
(hsPkgs."snap-core" or (errorHandler.buildDepError "snap-core"))
36+
(hsPkgs."snap-server" or (errorHandler.buildDepError "snap-server"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
39+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
40+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
41+
];
42+
buildable = true;
43+
};
44+
};
45+
}

0 commit comments

Comments
 (0)