-
Notifications
You must be signed in to change notification settings - Fork 17
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
Nov 30, 2024
1 parent
ec565d9
commit 6b760aa
Showing
32 changed files
with
1,335 additions
and
0 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
hackage/HCL-1.9-r0-6df4dc760c509f436d81337389a0f704e57563b9483ded4dab5b07ddf42f6ce7.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,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; | ||
}; | ||
}; | ||
}; | ||
} |
75 changes: 75 additions & 0 deletions
75
...aftovolio-0.6.1.0-r0-eb1cf839803d232a92c2f8b06fdc241611325ebff3fa4be8fd29faf90bcda0d0.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.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; | ||
}; | ||
}; | ||
}; | ||
} |
40 changes: 40 additions & 0 deletions
40
...rained-some-0.1.1-r0-4b4004357425102c0f32dd5ec834402ff007f418abf470608796818c8d1425e9.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,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; | ||
}; | ||
}; | ||
}; | ||
} |
40 changes: 40 additions & 0 deletions
40
...rained-some-0.1.2-r0-9e34a3a65960b5ebf49cc3e3264d4bf83e3a746e1b11fca6a1427b2f809bca57.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,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; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.