Skip to content

Commit 6b760aa

Browse files
author
IOHK
committed
Automatic Update
1 parent ec565d9 commit 6b760aa

File tree

32 files changed

+1335
-0
lines changed

32 files changed

+1335
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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 = "HCL"; version = "1.9"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Jonathan Lamothe <[email protected]>";
18+
author = "Justin Bailey";
19+
homepage = "http://github.com/m4dc4p/hcl/tree/master";
20+
url = "";
21+
synopsis = "High-level library for building command line interfaces.";
22+
description = "This module provides a set of functions for building simple command-line\ninterfaces. It allows interfaces which collect values (such as Integers,\nDates, or other structured values), build lists of values, and use simple\nmenus. It is not intended to build complex interfaces with full cursor\ncontrol. It is oriented towards line-based interfaces.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
30+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
31+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
32+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
33+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
34+
];
35+
buildable = true;
36+
};
37+
exes = {
38+
"hangman" = {
39+
depends = [
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
42+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
43+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
44+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
45+
(hsPkgs."HCL" or (errorHandler.buildDepError "HCL"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
tests = {
51+
"HCL-test" = {
52+
depends = [
53+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
54+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
55+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
56+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
57+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
58+
(hsPkgs."HCL" or (errorHandler.buildDepError "HCL"))
59+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
60+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
61+
];
62+
buildable = true;
63+
};
64+
};
65+
};
66+
}
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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.4";
14+
identifier = { name = "aftovolio"; version = "0.6.1.0"; };
15+
license = "MIT";
16+
copyright = "Oleksandr Zhabenko";
17+
maintainer = "[email protected]";
18+
author = "Oleksandr Zhabenko";
19+
homepage = "";
20+
url = "";
21+
synopsis = "An AFTOVolio implementation for creating texts with special phonetic / prosodic properties.";
22+
description = "It is another project that is based on the similar ideas as [phonetic-languages-simplified-examples-array package](https://hackage.haskell.org/package/phonetic-languages-simplified-examples-array). It combines general functionality with an example of complete one for Ukrainian language with extended documentation, mostly in the README.md file. ";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."rhythmic-sequences" or (errorHandler.buildDepError "rhythmic-sequences"))
30+
(hsPkgs."cli-arguments" or (errorHandler.buildDepError "cli-arguments"))
31+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
32+
(hsPkgs."rev-scientific" or (errorHandler.buildDepError "rev-scientific"))
33+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
34+
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
35+
(hsPkgs."minmax" or (errorHandler.buildDepError "minmax"))
36+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
37+
(hsPkgs."monoid-insertleft" or (errorHandler.buildDepError "monoid-insertleft"))
38+
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
39+
(hsPkgs."quantizer" or (errorHandler.buildDepError "quantizer"))
40+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
41+
(hsPkgs."lists-flines" or (errorHandler.buildDepError "lists-flines"))
42+
];
43+
buildable = true;
44+
};
45+
exes = {
46+
"aftovolioUkr" = {
47+
depends = [
48+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
49+
(hsPkgs."rhythmic-sequences" or (errorHandler.buildDepError "rhythmic-sequences"))
50+
(hsPkgs."cli-arguments" or (errorHandler.buildDepError "cli-arguments"))
51+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
52+
(hsPkgs."rev-scientific" or (errorHandler.buildDepError "rev-scientific"))
53+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
54+
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
55+
(hsPkgs."minmax" or (errorHandler.buildDepError "minmax"))
56+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
57+
(hsPkgs."monoid-insertleft" or (errorHandler.buildDepError "monoid-insertleft"))
58+
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
59+
(hsPkgs."quantizer" or (errorHandler.buildDepError "quantizer"))
60+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
61+
(hsPkgs."lists-flines" or (errorHandler.buildDepError "lists-flines"))
62+
];
63+
buildable = true;
64+
};
65+
"unconcatUkr2" = {
66+
depends = [
67+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
68+
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
69+
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
70+
];
71+
buildable = true;
72+
};
73+
};
74+
};
75+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 = "constrained-some"; version = "0.1.1"; };
15+
license = "MIT";
16+
copyright = "© 2024 Julian Bruder";
17+
maintainer = "[email protected]";
18+
author = "Julian Bruder";
19+
homepage = "https://github.com/bruderj15/constrained-some";
20+
url = "";
21+
synopsis = "Existential type that can be constrained";
22+
description = "This library provides utilities for working with existential types and type-level constraints.\nIt allows you to enforce multiple constraints on polymorphic types and containers complementing the package some.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
28+
buildable = true;
29+
};
30+
tests = {
31+
"constrained-some-test" = {
32+
depends = [
33+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
34+
(hsPkgs."constrained-some" or (errorHandler.buildDepError "constrained-some"))
35+
];
36+
buildable = true;
37+
};
38+
};
39+
};
40+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 = "constrained-some"; version = "0.1.2"; };
15+
license = "MIT";
16+
copyright = "© 2024 Julian Bruder";
17+
maintainer = "[email protected]";
18+
author = "Julian Bruder";
19+
homepage = "https://github.com/bruderj15/constrained-some";
20+
url = "";
21+
synopsis = "Existential type that can be constrained";
22+
description = "This library provides utilities for working with existential types and type-level constraints.\nIt allows you to enforce multiple constraints on polymorphic types and containers complementing the package some.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
28+
buildable = true;
29+
};
30+
tests = {
31+
"constrained-some-test" = {
32+
depends = [
33+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
34+
(hsPkgs."constrained-some" or (errorHandler.buildDepError "constrained-some"))
35+
];
36+
buildable = true;
37+
};
38+
};
39+
};
40+
}

0 commit comments

Comments
 (0)