Skip to content

Commit 0cd0b76

Browse files
author
IOHK
committed
Automatic Update
1 parent 8ed815a commit 0cd0b76

File tree

50 files changed

+2080
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2080
-9
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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.12";
14+
identifier = { name = "OneTuple"; version = "0.4.2"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) John Dorsey 2008";
17+
maintainer = "Oleg Grenrus <[email protected]>, John Dorsey <[email protected]>";
18+
author = "John Dorsey <[email protected]>";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Singleton Tuple";
22+
description = "This package is a compatibility package for a singleton data type\n\n> data Solo a = MkSolo a\n\nNote: it's not a @newtype@\n\n@Solo@ is available in @base-4.16@ (GHC-9.2).";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = (([
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
30+
] ++ (if compiler.isGhc && compiler.version.ge "9.0"
31+
then [
32+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
33+
]
34+
else [
35+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
36+
])) ++ pkgs.lib.optional (!(compiler.isGhc && compiler.version.ge "9.0")) (hsPkgs."foldable1-classes-compat" or (errorHandler.buildDepError "foldable1-classes-compat"))) ++ pkgs.lib.optional (!(compiler.isGhc && compiler.version.ge "9.2")) (hsPkgs."base-orphans" or (errorHandler.buildDepError "base-orphans"));
37+
buildable = true;
38+
};
39+
tests = {
40+
"instances" = {
41+
depends = ([
42+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
43+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
44+
(hsPkgs."OneTuple" or (errorHandler.buildDepError "OneTuple"))
45+
] ++ pkgs.lib.optionals (!(compiler.isGhc && compiler.version.ge "8.0")) [
46+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
47+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
48+
(hsPkgs."transformers-compat" or (errorHandler.buildDepError "transformers-compat"))
49+
]) ++ pkgs.lib.optional (!(compiler.isGhc && compiler.version.ge "9.6")) (hsPkgs."foldable1-classes-compat" or (errorHandler.buildDepError "foldable1-classes-compat"));
50+
buildable = true;
51+
};
52+
"th" = {
53+
depends = [
54+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
55+
(hsPkgs."OneTuple" or (errorHandler.buildDepError "OneTuple"))
56+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
57+
];
58+
buildable = true;
59+
};
60+
};
61+
};
62+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { tagged = false; };
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "assoc"; version = "1.1.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Oleg Grenrus <[email protected]>";
18+
author = "Oleg Grenrus <[email protected]>";
19+
homepage = "";
20+
url = "";
21+
synopsis = "swap and assoc: Symmetric and Semigroupy Bifunctors";
22+
description = "Provides generalisations of\n@swap :: (a,b) -> (b,a)@ and\n@assoc :: ((a,b),c) -> (a,(b,c))@\nto\n@Bifunctor@s supporting similar operations (e.g. @Either@, @These@).";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
] ++ pkgs.lib.optional (flags.tagged) (hsPkgs."tagged" or (errorHandler.buildDepError "tagged"));
30+
buildable = true;
31+
};
32+
};
33+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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 = "bench"; version = "1.0.13"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2016 Gabriella Gonzalez";
17+
maintainer = "[email protected]";
18+
author = "Gabriella Gonzalez";
19+
homepage = "https://github.com/Gabriella439/bench";
20+
url = "";
21+
synopsis = "Command-line benchmark tool";
22+
description = "Think of this as a more powerful alternative to the @time@\ncommand. Use this command-line tool to benchmark a command\nusing Haskell's @criterion@ library.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
exes = {
27+
"bench" = {
28+
depends = [
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
31+
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
32+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
33+
(hsPkgs."silently" or (errorHandler.buildDepError "silently"))
34+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
35+
(hsPkgs."turtle" or (errorHandler.buildDepError "turtle"))
36+
];
37+
buildable = true;
38+
};
39+
};
40+
};
41+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.2";
14+
identifier = { name = "data-fix"; version = "0.3.4"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov, Edward Kmett, Oleg Grenrus";
19+
homepage = "https://github.com/spell-music/data-fix";
20+
url = "";
21+
synopsis = "Fixpoint data types";
22+
description = "Fixpoint types and recursion schemes. If you define your AST as\nfixpoint type, you get fold and unfold operations for free.\n\nThanks for contribution to: Matej Kollar, Herbert Valerio Riedel";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
30+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
31+
];
32+
buildable = true;
33+
};
34+
};
35+
}

0 commit comments

Comments
 (0)