Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Oct 22, 2023
1 parent 3eea686 commit 35e9876
Show file tree
Hide file tree
Showing 47 changed files with 2,359 additions and 22 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11387,6 +11387,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"nymphaea" = import ./nix/nymphaea.nix;
"nyx-game" = import ./nix/nyx-game.nix;
"o-clock" = import ./nix/o-clock.nix;
"oalg-base" = import ./nix/oalg-base.nix;
"oanda-rest-api" = import ./nix/oanda-rest-api.nix;
"oasis-xrd" = import ./nix/oasis-xrd.nix;
"oath" = import ./nix/oath.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "Chart"; version = "1.9.4"; };
license = "BSD-3-Clause";
copyright = "Tim Docker, 2006-2014";
maintainer = "Tim Docker <tim@dockerz.net>";
author = "Tim Docker <tim@dockerz.net>";
homepage = "https://github.com/timbod7/haskell-chart/wiki";
url = "";
synopsis = "A library for generating 2D Charts and Plots";
description = "A library for generating 2D Charts and Plots, with backends provided by\nCairo (<http://hackage.haskell.org/package/Chart-cairo>)\nand\nDiagrams (<http://hackage.haskell.org/package/Chart-diagrams>).\nDocumentation: https://github.com/timbod7/haskell-chart/wiki.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."operational" or (errorHandler.buildDepError "operational"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
] ++ (pkgs.lib).optional (!(compiler.isGhc && (compiler.version).ge "8.0")) (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"));
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "Chart"; version = "1.9.4"; };
license = "BSD-3-Clause";
copyright = "Tim Docker, 2006-2014";
maintainer = "Tim Docker <tim@dockerz.net>";
author = "Tim Docker <tim@dockerz.net>";
homepage = "https://github.com/timbod7/haskell-chart/wiki";
url = "";
synopsis = "A library for generating 2D Charts and Plots";
description = "A library for generating 2D Charts and Plots, with backends provided by\nCairo (<http://hackage.haskell.org/package/Chart-cairo>)\nand\nDiagrams (<http://hackage.haskell.org/package/Chart-diagrams>).\nDocumentation: https://github.com/timbod7/haskell-chart/wiki.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."operational" or (errorHandler.buildDepError "operational"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
] ++ (pkgs.lib).optional (!(compiler.isGhc && (compiler.version).ge "8.0")) (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"));
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "barbies"; version = "2.0.5.0"; };
license = "BSD-3-Clause";
copyright = "2018 Daniel Gorin";
maintainer = "jcpetruzza@gmail.com";
author = "Daniel Gorin";
homepage = "https://github.com/jcpetruzza/barbies#readme";
url = "";
synopsis = "Classes for working with types that can change clothes.";
description = "Types that are parametric on a functor are like Barbies that have an outfit for each role. This package provides the basic abstractions to work with them comfortably.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."distributive" or (errorHandler.buildDepError "distributive"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
];
buildable = true;
};
tests = {
"barbies-test" = {
depends = [
(hsPkgs."barbies" or (errorHandler.buildDepError "barbies"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."distributive" or (errorHandler.buildDepError "distributive"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
];
buildable = true;
};
"barbies-test-legacy" = {
depends = [
(hsPkgs."barbies" or (errorHandler.buildDepError "barbies"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {
monad-control = true;
pipes = true;
pipes-safe = true;
primitive = true;
streaming = true;
transformers-base = true;
unliftio-core = true;
resourcet = true;
conduit = true;
};
package = {
specVersion = "1.18";
identifier = { name = "di-monad"; version = "1.3.5"; };
license = "BSD-3-Clause";
copyright = "Renzo Carbonara 2017";
maintainer = "renλren.zone";
author = "Renzo Carbonara";
homepage = "https://github.com/k0001/di";
url = "";
synopsis = "mtl flavoured typeful hierarchical structured logging for di-core.";
description = "mtl flavoured typeful hierarchical structured logging for di-core.";
buildType = "Simple";
};
components = {
"library" = {
depends = (((((((([
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."di-core" or (errorHandler.buildDepError "di-core"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
] ++ (pkgs.lib).optionals (flags.monad-control) [
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))
]) ++ (pkgs.lib).optional (flags.pipes) (hsPkgs."pipes" or (errorHandler.buildDepError "pipes"))) ++ (pkgs.lib).optionals (flags.pipes-safe) [
(hsPkgs."pipes-safe" or (errorHandler.buildDepError "pipes-safe"))
(hsPkgs."pipes" or (errorHandler.buildDepError "pipes"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))
]) ++ (pkgs.lib).optional (flags.primitive) (hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))) ++ (pkgs.lib).optionals (flags.streaming) [
(hsPkgs."streaming" or (errorHandler.buildDepError "streaming"))
(hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))
]) ++ (pkgs.lib).optional (flags.transformers-base) (hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))) ++ (pkgs.lib).optional (flags.unliftio-core) (hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))) ++ (pkgs.lib).optionals (flags.resourcet) [
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))
]) ++ (pkgs.lib).optionals (flags.conduit) [
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "dual-tree"; version = "0.2.3.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "diagrams-discuss@googlegroups.com";
author = "Brent Yorgey";
homepage = "";
url = "";
synopsis = "Rose trees with cached and accumulating monoidal annotations";
description = "Rose (n-ary) trees with both upwards- (/i.e./\ncached) and downwards-traveling (/i.e./\naccumulating) monoidal annotations. This is used\nas the core data structure underlying\nthe @diagrams@ framework\n(<https://diagrams.github.io>), but\npotentially has other applications as well.\n\nAbstractly, a DUALTree is a rose (n-ary) tree\nwith data (of type @l@) at leaves, data (of type\n@a@) at internal nodes, and two types of monoidal\nannotations, one (of type @u@) travelling \\\"up\\\"\nthe tree and one (of type @d@) traveling\n\\\"down\\\".\n\nSee \"Data.Tree.DUAL\" for full documentation.\n\"Data.Tree.DUAL\" provides a public API which\nshould suffice for most purposes.\n\"Data.Tree.DUAL.Internal\" exports more of the\ninternal implementation---use it at your own\nrisk.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."monoid-extras" or (errorHandler.buildDepError "monoid-extras"))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."testing-feat" or (errorHandler.buildDepError "testing-feat"))
(hsPkgs."monoid-extras" or (errorHandler.buildDepError "monoid-extras"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."dual-tree" or (errorHandler.buildDepError "dual-tree"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "generic-lens"; version = "0.1.0.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "kiss.csongor.kiss@gmail.com";
author = "Csongor Kiss";
homepage = "https://github.com/kcsongor/generic-lens";
url = "";
synopsis = "Generic data-structure operations exposed as lenses.";
description = "This package uses the GHC 8 Generic representation to derive various operations on data structures with a lens interface, including structural subtype relationship between records and positional indexing into arbitrary product types.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "generic-lens"; version = "0.2.0.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "kiss.csongor.kiss@gmail.com";
author = "Csongor Kiss";
homepage = "https://github.com/kcsongor/generic-lens";
url = "";
synopsis = "Generic data-structure operations exposed as lenses.";
description = "This package uses the GHC 8 Generic representation to derive various operations on data structures with a lens interface, including structural subtype relationship between records and positional indexing into arbitrary product types.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
};
}
Loading

0 comments on commit 35e9876

Please sign in to comment.