Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 5, 2024
1 parent 3f9db98 commit bf178f8
Show file tree
Hide file tree
Showing 25 changed files with 1,003 additions and 6 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17482,6 +17482,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"wrecker" = import ./nix/wrecker.nix;
"wrecker-ui" = import ./nix/wrecker-ui.nix;
"wreq" = import ./nix/wreq.nix;
"wreq-effectful" = import ./nix/wreq-effectful.nix;
"wreq-helper" = import ./nix/wreq-helper.nix;
"wreq-patchable" = import ./nix/wreq-patchable.nix;
"wreq-sb" = import ./nix/wreq-sb.nix;
Expand Down
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 = "1.12";
identifier = { name = "autodocodec-nix"; version = "0.0.1.5"; };
license = "MIT";
copyright = "2024 Tom Sydney Kerckhove";
maintainer = "syd@cs-syd.eu";
author = "Tom Sydney Kerckhove";
homepage = "https://github.com/NorfairKing/autodocodec#readme";
url = "";
synopsis = "Autodocodec interpreters for nix";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "colonnade"; version = "1.2.0.2"; };
license = "BSD-3-Clause";
copyright = "2016 Andrew Martin";
maintainer = "andrew.thaddeus@gmail.com";
author = "Andrew Martin";
homepage = "https://github.com/andrewthad/colonnade#readme";
url = "";
synopsis = "Generic types and functions for columnar encoding and decoding";
description = "The `colonnade` package provides a way to talk about\ncolumnar encodings and decodings of data. This package provides\nvery general types and does not provide a way for the end-user\nto actually apply the columnar encodings they build to data.\nMost users will also want to one a companion packages\nthat provides (1) a content type and (2) functions for feeding\ndata into a columnar encoding:\n\n* <https://hackage.haskell.org/package/lucid-colonnade lucid-colonnade> for `lucid` html tables\n\n* <https://hackage.haskell.org/package/blaze-colonnade blaze-colonnade> for `blaze` html tables\n\n* <https://hackage.haskell.org/package/reflex-dom-colonnade reflex-dom-colonnade> for reactive `reflex-dom` tables\n\n* <https://hackage.haskell.org/package/yesod-colonnade yesod-colonnade> for `yesod` widgets\n\n* <http://hackage.haskell.org/package/siphon siphon> for encoding and decoding CSVs";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."contravariant" or (errorHandler.buildDepError "contravariant"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."colonnade" or (errorHandler.buildDepError "colonnade"))
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
(hsPkgs."semigroupoids" or (errorHandler.buildDepError "semigroupoids"))
(hsPkgs."ansi-wl-pprint" or (errorHandler.buildDepError "ansi-wl-pprint"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."fast-logger" or (errorHandler.buildDepError "fast-logger"))
];
buildable = true;
};
};
};
}
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.10.1.20240511"; };
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;
};
};
}
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.10.1.20241103"; };
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;
};
};
}
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.10.1.20240511"; };
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;
};
};
}
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.10.1.20241103"; };
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;
};
};
}
Loading

0 comments on commit bf178f8

Please sign in to comment.