Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 30, 2024
1 parent ec565d9 commit 6b760aa
Show file tree
Hide file tree
Showing 32 changed files with 1,335 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "HCL"; version = "1.9"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Jonathan Lamothe <jlamothe1980@gmail.com>";
author = "Justin Bailey";
homepage = "http://github.com/m4dc4p/hcl/tree/master";
url = "";
synopsis = "High-level library for building command line interfaces.";
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.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
];
buildable = true;
};
exes = {
"hangman" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."HCL" or (errorHandler.buildDepError "HCL"))
];
buildable = true;
};
};
tests = {
"HCL-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."HCL" or (errorHandler.buildDepError "HCL"))
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.4";
identifier = { name = "aftovolio"; version = "0.6.1.0"; };
license = "MIT";
copyright = "Oleksandr Zhabenko";
maintainer = "oleksandr.zhabenko@yahoo.com";
author = "Oleksandr Zhabenko";
homepage = "";
url = "";
synopsis = "An AFTOVolio implementation for creating texts with special phonetic / prosodic properties.";
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. ";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."rhythmic-sequences" or (errorHandler.buildDepError "rhythmic-sequences"))
(hsPkgs."cli-arguments" or (errorHandler.buildDepError "cli-arguments"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."rev-scientific" or (errorHandler.buildDepError "rev-scientific"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
(hsPkgs."minmax" or (errorHandler.buildDepError "minmax"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."monoid-insertleft" or (errorHandler.buildDepError "monoid-insertleft"))
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
(hsPkgs."quantizer" or (errorHandler.buildDepError "quantizer"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."lists-flines" or (errorHandler.buildDepError "lists-flines"))
];
buildable = true;
};
exes = {
"aftovolioUkr" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."rhythmic-sequences" or (errorHandler.buildDepError "rhythmic-sequences"))
(hsPkgs."cli-arguments" or (errorHandler.buildDepError "cli-arguments"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."rev-scientific" or (errorHandler.buildDepError "rev-scientific"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
(hsPkgs."minmax" or (errorHandler.buildDepError "minmax"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."monoid-insertleft" or (errorHandler.buildDepError "monoid-insertleft"))
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
(hsPkgs."quantizer" or (errorHandler.buildDepError "quantizer"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."lists-flines" or (errorHandler.buildDepError "lists-flines"))
];
buildable = true;
};
"unconcatUkr2" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."mmsyn2-array" or (errorHandler.buildDepError "mmsyn2-array"))
(hsPkgs."intermediate-structures" or (errorHandler.buildDepError "intermediate-structures"))
];
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 = "3.0";
identifier = { name = "constrained-some"; version = "0.1.1"; };
license = "MIT";
copyright = "© 2024 Julian Bruder";
maintainer = "julian.bruder@outlook.com";
author = "Julian Bruder";
homepage = "https://github.com/bruderj15/constrained-some";
url = "";
synopsis = "Existential type that can be constrained";
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.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
tests = {
"constrained-some-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."constrained-some" or (errorHandler.buildDepError "constrained-some"))
];
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 = "3.0";
identifier = { name = "constrained-some"; version = "0.1.2"; };
license = "MIT";
copyright = "© 2024 Julian Bruder";
maintainer = "julian.bruder@outlook.com";
author = "Julian Bruder";
homepage = "https://github.com/bruderj15/constrained-some";
url = "";
synopsis = "Existential type that can be constrained";
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.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
tests = {
"constrained-some-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."constrained-some" or (errorHandler.buildDepError "constrained-some"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 6b760aa

Please sign in to comment.