Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 15, 2024
1 parent 4735b69 commit 602d631
Show file tree
Hide file tree
Showing 26 changed files with 1,349 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { example = false; };
package = {
specVersion = "1.22";
identifier = { name = "ansi-terminal"; version = "1.1.2"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Mike Pilgrem <public@pilgrem.com>, Roman Cheplyaka <roma@ro-che.info>";
author = "Max Bolingbroke";
homepage = "https://github.com/UnkindPartition/ansi-terminal";
url = "";
synopsis = "Simple ANSI terminal support";
description = "ANSI terminal support for Haskell: allows cursor movement,\nscreen clearing, color output, showing or hiding the\ncursor, and changing the title. Works on UNIX and Windows.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ansi-terminal-types" or (errorHandler.buildDepError "ansi-terminal-types"))
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
];
buildable = true;
};
exes = {
"ansi-terminal-example" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
];
buildable = if !flags.example then false else true;
};
};
};
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.2";
identifier = { name = "base62"; version = "0.1.1.2"; };
license = "BSD-3-Clause";
copyright = "2019 Andrew Martin";
maintainer = "amartin@layer3com.com";
author = "Andrew Martin";
homepage = "https://github.com/byteverse/base62";
url = "";
synopsis = "Base62 encoding and decoding";
description = "Encode and decode using the base62 encoding scheme.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytebuild" or (errorHandler.buildDepError "bytebuild"))
(hsPkgs."byteslice" or (errorHandler.buildDepError "byteslice"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."natural-arithmetic" or (errorHandler.buildDepError "natural-arithmetic"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-short" or (errorHandler.buildDepError "text-short"))
(hsPkgs."wide-word" or (errorHandler.buildDepError "wide-word"))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."base62" or (errorHandler.buildDepError "base62"))
(hsPkgs."byteslice" or (errorHandler.buildDepError "byteslice"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."wide-word" or (errorHandler.buildDepError "wide-word"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { cereal = true; serialise = true; http-api-data = true; };
package = {
specVersion = "1.12";
identifier = { name = "base64-bytestring-type"; version = "1.0.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Erik de Castro Lopo <erikd@mega-nerd.com>";
author = "Oleg Grenrus <oleg.grenrus@iki.fi>";
homepage = "https://github.com/erikd/base64-bytestring-type#readme";
url = "";
synopsis = "A newtype around ByteString, for base64 encoding";
description = "A newtype around ByteString, for base64 encoding.\nStrict and lazy, normal and url alphabet variants.";
buildType = "Simple";
};
components = {
"library" = {
depends = ((([
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base-compat" or (errorHandler.buildDepError "base-compat"))
(hsPkgs."base64-bytestring" or (errorHandler.buildDepError "base64-bytestring"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
] ++ pkgs.lib.optional (!(compiler.isGhc && compiler.version.ge "8.0")) (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))) ++ pkgs.lib.optional (flags.cereal) (hsPkgs."cereal" or (errorHandler.buildDepError "cereal"))) ++ pkgs.lib.optional (flags.serialise) (hsPkgs."serialise" or (errorHandler.buildDepError "serialise"))) ++ pkgs.lib.optional (flags.http-api-data) (hsPkgs."http-api-data" or (errorHandler.buildDepError "http-api-data"));
buildable = true;
};
tests = {
"tests" = {
depends = (([
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."base64-bytestring-type" or (errorHandler.buildDepError "base64-bytestring-type"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
] ++ pkgs.lib.optional (flags.cereal) (hsPkgs."cereal" or (errorHandler.buildDepError "cereal"))) ++ pkgs.lib.optional (flags.serialise) (hsPkgs."serialise" or (errorHandler.buildDepError "serialise"))) ++ pkgs.lib.optional (flags.http-api-data) (hsPkgs."http-api-data" or (errorHandler.buildDepError "http-api-data"));
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "fixed-vector-hetero"; version = "0.6.0.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
author = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
url = "";
synopsis = "Library for working with product types generically";
description = "Library allow to work with arbitrary product types in generic\nmanner. They could be constructed, destucted, converted provided\nthey are product of identical types.";
buildType = "Custom";
setup-depends = [
(hsPkgs.pkgsBuildBuild.base or (pkgs.pkgsBuildBuild.base or (errorHandler.setupDepError "base")))
(hsPkgs.pkgsBuildBuild.Cabal or (pkgs.pkgsBuildBuild.Cabal or (errorHandler.setupDepError "Cabal")))
(hsPkgs.pkgsBuildBuild.cabal-doctest or (pkgs.pkgsBuildBuild.cabal-doctest or (errorHandler.setupDepError "cabal-doctest")))
];
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
];
buildable = true;
};
tests = {
"doctests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."fixed-vector-hetero" or (errorHandler.buildDepError "fixed-vector-hetero"))
];
buildable = if compiler.isGhcjs && true then false else true;
};
};
};
}
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 = "1.10";
identifier = { name = "fixed-vector-hetero"; version = "0.6.1.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
author = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
url = "";
synopsis = "Library for working with product types generically";
description = "Library allow to work with arbitrary product types in generic\nmanner. They could be constructed, destucted, converted provided\nthey are product of identical types.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
];
buildable = true;
};
tests = {
"doctests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."fixed-vector-hetero" or (errorHandler.buildDepError "fixed-vector-hetero"))
];
buildable = if compiler.isGhcjs && true then false else 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 = "fixed-vector-hetero"; version = "0.6.1.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
author = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
url = "";
synopsis = "Library for working with product types generically";
description = "Library allow to work with arbitrary product types in generic\nmanner. They could be constructed, destucted, converted provided\nthey are product of identical types.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
];
buildable = true;
};
tests = {
"doctests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."fixed-vector-hetero" or (errorHandler.buildDepError "fixed-vector-hetero"))
];
buildable = (if compiler.isGhcjs && true
then false
else true) && (if compiler.isGhc && compiler.version.ge "9.0" && (compiler.isGhc && compiler.version.lt "9.1")
then false
else true) && (if compiler.isGhc && compiler.version.ge "9.2" && (compiler.isGhc && compiler.version.lt "9.3")
then false
else true);
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "fixed-vector-hetero"; version = "0.6.2.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
author = "Aleksey Khudyakov <alexey.skladnoy@gmail.com>";
homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
url = "";
synopsis = "Library for working with product types generically";
description = "Library allow to work with arbitrary product types in generic\nmanner. They could be constructed, destucted, converted provided\nthey are product of identical types.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
];
buildable = true;
};
tests = {
"doctests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
(hsPkgs."fixed-vector" or (errorHandler.buildDepError "fixed-vector"))
(hsPkgs."fixed-vector-hetero" or (errorHandler.buildDepError "fixed-vector-hetero"))
];
buildable = (if compiler.isGhcjs && true
then false
else true) && (if compiler.isGhc && compiler.version.ge "9.0" && (compiler.isGhc && compiler.version.lt "9.1")
then false
else true);
};
};
};
}
Loading

0 comments on commit 602d631

Please sign in to comment.