Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Dec 1, 2024
1 parent 6b760aa commit b469686
Show file tree
Hide file tree
Showing 12 changed files with 464 additions and 0 deletions.
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.2.0"; };
license = "MIT";
copyright = "Oleksandr Zhabenko";
maintainer = "[email protected]";
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,58 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { threaded-rts = true; };
package = {
specVersion = "3.0";
identifier = { name = "ghc-lib"; version = "9.8.4.20241130"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Digital Asset";
author = "The GHC Team and Digital Asset";
homepage = "https://github.com/digital-asset/ghc-lib";
url = "";
synopsis = "The GHC API, decoupled from GHC versions";
description = "A package equivalent to the @ghc@ package, but which can be loaded on many compiler versions.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."semaphore-compat" or (errorHandler.buildDepError "semaphore-compat"))
(hsPkgs."rts" or (errorHandler.buildDepError "rts"))
(hsPkgs."hpc" or (errorHandler.buildDepError "hpc"))
(hsPkgs."ghc-lib-parser" or (errorHandler.buildDepError "ghc-lib-parser"))
] ++ (if !system.isWindows
then [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]
else [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ]);
build-tools = [
(hsPkgs.pkgsBuildBuild.alex.components.exes.alex or (pkgs.pkgsBuildBuild.alex or (errorHandler.buildToolDepError "alex:alex")))
(hsPkgs.pkgsBuildBuild.happy.components.exes.happy or (pkgs.pkgsBuildBuild.happy or (errorHandler.buildToolDepError "happy:happy")))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { threaded-rts = true; };
package = {
specVersion = "3.0";
identifier = { name = "ghc-lib-parser"; version = "9.8.4.20241130"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Digital Asset";
author = "The GHC Team and Digital Asset";
homepage = "https://github.com/digital-asset/ghc-lib";
url = "";
synopsis = "The GHC API, decoupled from GHC versions";
description = "A package equivalent to the @ghc@ package, but which can be loaded on many compiler versions.";
buildType = "Simple";
};
components = {
"library" = {
depends = ([
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
] ++ (if !system.isWindows
then [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]
else [
(hsPkgs."Win32" or (errorHandler.buildDepError "Win32"))
])) ++ pkgs.lib.optional (compiler.isGhc && compiler.version.ge "9.10") (hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"));
build-tools = [
(hsPkgs.pkgsBuildBuild.alex.components.exes.alex or (pkgs.pkgsBuildBuild.alex or (errorHandler.buildToolDepError "alex:alex")))
(hsPkgs.pkgsBuildBuild.happy.components.exes.happy or (pkgs.pkgsBuildBuild.happy or (errorHandler.buildToolDepError "happy:happy")))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "isomorphism-class"; version = "0.2.1"; };
license = "MIT";
copyright = "(c) 2022 Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/isomorphism-class";
url = "";
synopsis = "Lawful typeclasses for conversion between types";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
build-tools = [
(hsPkgs.pkgsBuildBuild.autoexporter.components.exes.autoexporter or (pkgs.pkgsBuildBuild.autoexporter or (errorHandler.buildToolDepError "autoexporter:autoexporter")))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."isomorphism-class" or (errorHandler.buildDepError "isomorphism-class"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."rebase" or (errorHandler.buildDepError "rebase"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "isomorphism-class"; version = "0.2.1.1"; };
license = "MIT";
copyright = "(c) 2022 Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/isomorphism-class";
url = "";
synopsis = "Lawful typeclasses for conversion between types";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
build-tools = [
(hsPkgs.pkgsBuildBuild.autoexporter.components.exes.autoexporter or (pkgs.pkgsBuildBuild.autoexporter or (errorHandler.buildToolDepError "autoexporter:autoexporter")))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."isomorphism-class" or (errorHandler.buildDepError "isomorphism-class"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."rebase" or (errorHandler.buildDepError "rebase"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit b469686

Please sign in to comment.