Skip to content

Commit f76db34

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

File tree

35 files changed

+1071
-3
lines changed

35 files changed

+1071
-3
lines changed

default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7842,6 +7842,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
78427842
"hesql" = import ./nix/hesql.nix;
78437843
"hetero-dict" = import ./nix/hetero-dict.nix;
78447844
"hetero-map" = import ./nix/hetero-map.nix;
7845+
"hetero-parameter-list" = import ./nix/hetero-parameter-list.nix;
78457846
"hetero-zip" = import ./nix/hetero-zip.nix;
78467847
"heterocephalus" = import ./nix/heterocephalus.nix;
78477848
"heterogeneous-list-literals" = import ./nix/heterogeneous-list-literals.nix;
@@ -16594,6 +16595,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1659416595
"typelevel" = import ./nix/typelevel.nix;
1659516596
"typelevel-rewrite-rules" = import ./nix/typelevel-rewrite-rules.nix;
1659616597
"typelevel-tensor" = import ./nix/typelevel-tensor.nix;
16598+
"typelevel-tools-yj" = import ./nix/typelevel-tools-yj.nix;
1659716599
"typelits-printf" = import ./nix/typelits-printf.nix;
1659816600
"typelits-witnesses" = import ./nix/typelits-witnesses.nix;
1659916601
"typenums" = import ./nix/typenums.nix;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 = "aeson-typescript"; version = "0.6.4.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2022 CodeDown";
17+
maintainer = "[email protected]";
18+
author = "Tom McLaughlin";
19+
homepage = "https://github.com/codedownio/aeson-typescript#readme";
20+
url = "";
21+
synopsis = "Generate TypeScript definition files from your ADTs";
22+
description = "Please see the README on Github at <https://github.com/codedownio/aeson-typescript#readme>";
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."mtl" or (errorHandler.buildDepError "mtl"))
33+
(hsPkgs."string-interpolate" or (errorHandler.buildDepError "string-interpolate"))
34+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
35+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
36+
(hsPkgs."th-abstraction" or (errorHandler.buildDepError "th-abstraction"))
37+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
38+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
39+
];
40+
buildable = true;
41+
};
42+
tests = {
43+
"aeson-typescript-tests" = {
44+
depends = [
45+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
46+
(hsPkgs."aeson-typescript" or (errorHandler.buildDepError "aeson-typescript"))
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
49+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
50+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
51+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
52+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
53+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
54+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
55+
(hsPkgs."string-interpolate" or (errorHandler.buildDepError "string-interpolate"))
56+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
57+
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
58+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
59+
(hsPkgs."th-abstraction" or (errorHandler.buildDepError "th-abstraction"))
60+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
61+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
62+
];
63+
buildable = true;
64+
};
65+
};
66+
};
67+
}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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.0";
14+
identifier = { name = "fold-debounce"; version = "0.2.0.14"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Toshio Ito <[email protected]>";
18+
author = "Toshio Ito <[email protected]>";
19+
homepage = "https://github.com/debug-ito/fold-debounce";
20+
url = "";
21+
synopsis = "Fold multiple events that happen in a given period of time.";
22+
description = "Fold multiple events that happen in a given period of time. See \"Control.FoldDebounce\".";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
30+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
31+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
32+
(hsPkgs."stm-delay" or (errorHandler.buildDepError "stm-delay"))
33+
];
34+
buildable = true;
35+
};
36+
tests = {
37+
"spec" = {
38+
depends = [
39+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
40+
(hsPkgs."fold-debounce" or (errorHandler.buildDepError "fold-debounce"))
41+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
42+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
43+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
44+
];
45+
build-tools = [
46+
(hsPkgs.pkgsBuildBuild.hspec-discover.components.exes.hspec-discover or (pkgs.pkgsBuildBuild.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
47+
];
48+
buildable = true;
49+
};
50+
"spec-threaded" = {
51+
depends = [
52+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
53+
(hsPkgs."fold-debounce" or (errorHandler.buildDepError "fold-debounce"))
54+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
55+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
56+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
57+
];
58+
build-tools = [
59+
(hsPkgs.pkgsBuildBuild.hspec-discover.components.exes.hspec-discover or (pkgs.pkgsBuildBuild.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
60+
];
61+
buildable = true;
62+
};
63+
};
64+
};
65+
}
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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 = "hedn"; version = "0.3.0.4"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2019 Alexander Bondarenko";
17+
maintainer = "[email protected]";
18+
author = "Alexander Bondarenko";
19+
homepage = "";
20+
url = "";
21+
synopsis = "EDN parsing and encoding";
22+
description = "A EDN parsing and encoding library.\n\nBased on \"specs\" published at <https://github.com/edn-format/edn>.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
30+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
31+
(hsPkgs."deriving-compat" or (errorHandler.buildDepError "deriving-compat"))
32+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
33+
(hsPkgs."parser-combinators" or (errorHandler.buildDepError "parser-combinators"))
34+
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
35+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
36+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
39+
(hsPkgs."uuid-types" or (errorHandler.buildDepError "uuid-types"))
40+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
41+
];
42+
buildable = true;
43+
};
44+
tests = {
45+
"edn-test" = {
46+
depends = [
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
49+
(hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog"))
50+
(hsPkgs."hedn" or (errorHandler.buildDepError "hedn"))
51+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
52+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
53+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
54+
(hsPkgs."uuid-types" or (errorHandler.buildDepError "uuid-types"))
55+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
56+
];
57+
buildable = true;
58+
};
59+
};
60+
};
61+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 = "hedn-functor"; version = "0.1.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2019 Alexander Bondarenko";
17+
maintainer = "[email protected]";
18+
author = "Alexander Bondarenko";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Base functor for EDN AST";
22+
description = "Functor encoding for recursion schemes.\n\nMini-tutorial is available on package page: <https://dpwiz.gitlab.io/hedn/05-BaseFunctor.html>.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
30+
(hsPkgs."hedn" or (errorHandler.buildDepError "hedn"))
31+
(hsPkgs."recursion-schemes" or (errorHandler.buildDepError "recursion-schemes"))
32+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
33+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
34+
];
35+
buildable = true;
36+
};
37+
};
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 = "hetero-parameter-list"; version = "0.1.0.17"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/try-hetero-parameter-list#readme";
20+
url = "";
21+
synopsis = "hetero list with parameter list";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/hetero-parameter-list#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
30+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"try-hetero-parameter-list-test" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
39+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
40+
(hsPkgs."try-hetero-parameter-list" or (errorHandler.buildDepError "try-hetero-parameter-list"))
41+
];
42+
buildable = true;
43+
};
44+
};
45+
};
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 = "hetero-parameter-list"; version = "0.1.0.18"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/hetero-parameter-list#readme";
20+
url = "";
21+
synopsis = "hetero list with parameter list";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/hetero-parameter-list#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
30+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"try-hetero-parameter-list-test" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
39+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
40+
(hsPkgs."try-hetero-parameter-list" or (errorHandler.buildDepError "try-hetero-parameter-list"))
41+
];
42+
buildable = true;
43+
};
44+
};
45+
};
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 = "hetero-parameter-list"; version = "0.1.0.19"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/hetero-parameter-list#readme";
20+
url = "";
21+
synopsis = "hetero list with parameter list";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/hetero-parameter-list#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
30+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"hetero-parameter-list-test" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
39+
(hsPkgs."hetero-parameter-list" or (errorHandler.buildDepError "hetero-parameter-list"))
40+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
41+
];
42+
buildable = true;
43+
};
44+
};
45+
};
46+
}

0 commit comments

Comments
 (0)