-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
IOHK
committed
Dec 1, 2024
1 parent
6b760aa
commit b469686
Showing
12 changed files
with
464 additions
and
0 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
...aftovolio-0.6.2.0-r0-5b3dbdbecffa4a25801fe02006318fda99979ea010cf1d0b9beba17bc0c6afaf.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...ib-9.8.4.20241130-r0-7ec3bdb3c9c2c9d12e231e8030351927ca07a27b049c2aaef226ba81cf5f61a0.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
}; | ||
} |
55 changes: 55 additions & 0 deletions
55
...er-9.8.4.20241130-r0-f01b64af0b6b07ef769e37fdbaa4ed73e3ad803a92cdcbfc2d86360866588da5.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
}; | ||
} |
61 changes: 61 additions & 0 deletions
61
...phism-class-0.2.1-r0-33635005957d599e4523e3215d0ed87ba921d1d924dbbf35f25fce2f5f979b58.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
}; | ||
}; | ||
} |
61 changes: 61 additions & 0 deletions
61
...ism-class-0.2.1.1-r0-ed0d84aa8788413b23a126fc0b67a5acfb3b0ad0d8703a2611a69c993e624852.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.