Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Dec 5, 2023
1 parent def9f1b commit 3783a98
Show file tree
Hide file tree
Showing 55 changed files with 2,001 additions and 3 deletions.
2 changes: 2 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2495,6 +2495,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"bash" = import ./nix/bash.nix;
"basic" = import ./nix/basic.nix;
"basic-cpuid" = import ./nix/basic-cpuid.nix;
"basic-gps" = import ./nix/basic-gps.nix;
"basic-lens" = import ./nix/basic-lens.nix;
"basic-prelude" = import ./nix/basic-prelude.nix;
"basic-sop" = import ./nix/basic-sop.nix;
Expand Down Expand Up @@ -4025,6 +4026,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"corebot-bliki" = import ./nix/corebot-bliki.nix;
"corecursive-main" = import ./nix/corecursive-main.nix;
"corenlp-parser" = import ./nix/corenlp-parser.nix;
"corenlp-types" = import ./nix/corenlp-types.nix;
"cornea" = import ./nix/cornea.nix;
"coroutine-enumerator" = import ./nix/coroutine-enumerator.nix;
"coroutine-iteratee" = import ./nix/coroutine-iteratee.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.0";
identifier = { name = "Win32"; version = "2.13.4.0"; };
license = "BSD-3-Clause";
copyright = "Alastair Reid, 1999-2003; shelarcy, 2012-2013; Tamar Christina, 2016-2020";
maintainer = "Haskell Libraries <[email protected]>";
author = "Alastair Reid, shelarcy, Tamar Christina";
homepage = "https://github.com/haskell/win32";
url = "";
synopsis = "A binding to Windows Win32 API.";
description = "This library contains direct bindings to the Windows Win32 APIs for Haskell.";
buildType = "Simple";
};
components = {
"library" = {
depends = ([
(hsPkgs."base" or (errorHandler.buildDepError "base"))
] ++ (pkgs.lib).optional (!system.isWindows) (hsPkgs."unbuildable" or (errorHandler.buildDepError "unbuildable"))) ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).ge "8.0") (hsPkgs."filepath" or (errorHandler.buildDepError "filepath"));
libs = [
(pkgs."user32" or (errorHandler.sysDepError "user32"))
(pkgs."gdi32" or (errorHandler.sysDepError "gdi32"))
(pkgs."winmm" or (errorHandler.sysDepError "winmm"))
(pkgs."advapi32" or (errorHandler.sysDepError "advapi32"))
(pkgs."shell32" or (errorHandler.sysDepError "shell32"))
(pkgs."shfolder" or (errorHandler.sysDepError "shfolder"))
(pkgs."shlwapi" or (errorHandler.sysDepError "shlwapi"))
(pkgs."msimg32" or (errorHandler.sysDepError "msimg32"))
(pkgs."imm32" or (errorHandler.sysDepError "imm32"))
];
build-tools = [
(hsPkgs.buildPackages.hsc2hs.components.exes.hsc2hs or (pkgs.buildPackages.hsc2hs or (errorHandler.buildToolDepError "hsc2hs:hsc2hs")))
];
buildable = if !system.isWindows then false else 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 = "2.4";
identifier = { name = "basic-gps"; version = "0.1.0.0"; };
license = "MIT";
copyright = "";
maintainer = "[email protected]";
author = "InAnYan";
homepage = "";
url = "";
synopsis = "Basic implementation of General Problem Solver algorithm";
description = "Basic implementation of General Problem Solver algorithm.\nUntested, does not fix many problems.\nThe algorithm is abstract: you can provide your own type of goals and operations.";
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,83 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "composite-aeson"; version = "0.8.2.2"; };
license = "BSD-3-Clause";
copyright = "2017 Confer Health, Inc., 2020-2021 Vital Biosciences";
maintainer = "[email protected]";
author = "Confer Health, Inc";
homepage = "https://github.com/composite-hs/composite#readme";
url = "";
synopsis = "JSON for Vinyl records";
description = "Integration between Aeson and Vinyl records allowing records to be easily converted to JSON using automatic derivation, explicit formats, or a mix of both.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."aeson-better-errors" or (errorHandler.buildDepError "aeson-better-errors"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."composite-base" or (errorHandler.buildDepError "composite-base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."contravariant" or (errorHandler.buildDepError "contravariant"))
(hsPkgs."generic-deriving" or (errorHandler.buildDepError "generic-deriving"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."mmorph" or (errorHandler.buildDepError "mmorph"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."vinyl" or (errorHandler.buildDepError "vinyl"))
];
buildable = true;
};
tests = {
"composite-aeson-test" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."aeson-better-errors" or (errorHandler.buildDepError "aeson-better-errors"))
(hsPkgs."aeson-qq" or (errorHandler.buildDepError "aeson-qq"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."composite-aeson" or (errorHandler.buildDepError "composite-aeson"))
(hsPkgs."composite-base" or (errorHandler.buildDepError "composite-base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."contravariant" or (errorHandler.buildDepError "contravariant"))
(hsPkgs."generic-deriving" or (errorHandler.buildDepError "generic-deriving"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."mmorph" or (errorHandler.buildDepError "mmorph"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."vinyl" or (errorHandler.buildDepError "vinyl"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "composite-aeson-path"; version = "0.8.2.2"; };
license = "BSD-3-Clause";
copyright = "2017 Confer Health, Inc., 2020-2021 Vital Biosciences";
maintainer = "[email protected]";
author = "Confer Health, Inc";
homepage = "https://github.com/composite-hs/composite#readme";
url = "";
synopsis = "Formatting data for the path library.";
description = "JsonFormat for Path.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."composite-aeson" or (errorHandler.buildDepError "composite-aeson"))
(hsPkgs."path" or (errorHandler.buildDepError "path"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "composite-aeson-refined"; version = "0.8.2.2"; };
license = "BSD-3-Clause";
copyright = "2017 Confer Health, Inc., 2020-2021 Vital Biosciences";
maintainer = "[email protected]";
author = "Confer Health, Inc";
homepage = "https://github.com/composite-hs/composite#readme";
url = "";
synopsis = "composite-aeson support for Refined from the refined package";
description = "JsonFormat and DefaultJsonFormat for Refined";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson-better-errors" or (errorHandler.buildDepError "aeson-better-errors"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."composite-aeson" or (errorHandler.buildDepError "composite-aeson"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."refined" or (errorHandler.buildDepError "refined"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "composite-base"; version = "0.8.2.2"; };
license = "BSD-3-Clause";
copyright = "2017 Confer Health, Inc., 2020-2021 Vital Biosciences";
maintainer = "[email protected]";
author = "Confer Health, Inc.";
homepage = "https://github.com/composite-hs/composite-base#readme";
url = "";
synopsis = "Shared utilities for composite-* packages.";
description = "Shared helpers for the various composite packages.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))
(hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))
(hsPkgs."vinyl" or (errorHandler.buildDepError "vinyl"))
];
buildable = true;
};
tests = {
"composite-base-test" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."composite-base" or (errorHandler.buildDepError "composite-base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base"))
(hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))
(hsPkgs."vinyl" or (errorHandler.buildDepError "vinyl"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "composite-binary"; version = "0.8.2.2"; };
license = "BSD-3-Clause";
copyright = "2017 Confer Health, Inc., 2020-2021 Vital Biosciences";
maintainer = "[email protected]";
author = "Confer Health, Inc";
homepage = "https://github.com/composite-hs/composite#readme";
url = "";
synopsis = "Orphan binary instances.";
description = "Binary instance for (:->) and Record.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."composite-base" or (errorHandler.buildDepError "composite-base"))
];
buildable = true;
};
};
}
Loading

0 comments on commit 3783a98

Please sign in to comment.