Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Jul 26, 2024
1 parent 62bf495 commit 3f06753
Show file tree
Hide file tree
Showing 23 changed files with 781 additions and 2 deletions.
4 changes: 4 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3929,6 +3929,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"conformance" = import ./nix/conformance.nix;
"conformance-gen" = import ./nix/conformance-gen.nix;
"confsolve" = import ./nix/confsolve.nix;
"conftrack" = import ./nix/conftrack.nix;
"congruence-relation" = import ./nix/congruence-relation.nix;
"conic-graphs" = import ./nix/conic-graphs.nix;
"conjugateGradient" = import ./nix/conjugate_Gradient.nix;
Expand Down Expand Up @@ -5970,6 +5971,8 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"fraxl" = import ./nix/fraxl.nix;
"frecently" = import ./nix/frecently.nix;
"freckle-app" = import ./nix/freckle-app.nix;
"freckle-env" = import ./nix/freckle-env.nix;
"freckle-kafka" = import ./nix/freckle-kafka.nix;
"freddy" = import ./nix/freddy.nix;
"free" = import ./nix/free.nix;
"free-alacarte" = import ./nix/free-alacarte.nix;
Expand Down Expand Up @@ -17765,6 +17768,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"yoga" = import ./nix/yoga.nix;
"yoko" = import ./nix/yoko.nix;
"york-lava" = import ./nix/york-lava.nix;
"yosys-rtl" = import ./nix/yosys-rtl.nix;
"youtube" = import ./nix/youtube.nix;
"yql" = import ./nix/yql.nix;
"yst" = import ./nix/yst.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.4";
identifier = { name = "conftrack"; version = "0.0.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "[email protected]";
author = "stuebinm";
homepage = "";
url = "";
synopsis = "Tracable multi-source config management";
description = "A library for handling multiple config files and keep track of where\nconfig values came from.\n\nConfig values can be read from json, yaml, or environment variables;\nit is also possible to implement custom configuration sources via a\ntype class.\n\nProvenance of config values is tracked while reading them; an application\nusing this library can easily print a listing detailing which files were\nread and which file provided (or failed to provide) an individual value.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."file-io" or (errorHandler.buildDepError "file-io"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
tests = {
"conftrack-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."conftrack" or (errorHandler.buildDepError "conftrack"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.4";
identifier = { name = "conftrack"; version = "0.0.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "[email protected]";
author = "stuebinm";
homepage = "";
url = "";
synopsis = "Tracable multi-source config management";
description = "A library for handling multiple config files and keep track of where\nconfig values came from.\n\nConfig values can be read from json, yaml, or environment variables;\nit is also possible to implement custom configuration sources via a\ntype class.\n\nProvenance of config values is tracked while reading them; an application\nusing this library can easily print a listing detailing which files were\nread and which file provided (or failed to provide) an individual value.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."file-io" or (errorHandler.buildDepError "file-io"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
tests = {
"conftrack-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."conftrack" or (errorHandler.buildDepError "conftrack"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
];
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 = "curve25519"; version = "0.2.8"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Adam Wick <[email protected]>";
author = "Adam Wick <[email protected]>";
homepage = "http://github.com/acw/curve25519";
url = "";
synopsis = "Fast implementations of the curve25519 elliptic curve primitives.";
description = "Haskell bindings and extensions to the curve25519-donna\ncodebase. This module is a pretty straightforward implementation\nof the basic cryptographic routines you'd want from a project that\nuses curve25519: key generation, and key agreement. For further\nfunctionality, you'll want to look elsewhere.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."crypto-api" or (errorHandler.buildDepError "crypto-api"))
];
buildable = true;
};
tests = {
"test-curve25519" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."curve25519" or (errorHandler.buildDepError "curve25519"))
(hsPkgs."crypto-api" or (errorHandler.buildDepError "crypto-api"))
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
(hsPkgs."test-framework" or (errorHandler.buildDepError "test-framework"))
(hsPkgs."test-framework-hunit" or (errorHandler.buildDepError "test-framework-hunit"))
(hsPkgs."test-framework-quickcheck2" or (errorHandler.buildDepError "test-framework-quickcheck2"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.2";
identifier = { name = "exon"; version = "1.7.0.0"; };
license = "BSD-2-Clause-Patent";
copyright = "2023 Torsten Schmits";
maintainer = "[email protected]";
author = "Torsten Schmits";
homepage = "https://github.com/tek/exon#readme";
url = "";
synopsis = "Customizable quasiquote interpolation";
description = "See https://hackage.haskell.org/package/exon/docs/Exon.html";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghc" or (errorHandler.buildDepError "ghc"))
(hsPkgs."incipit-base" or (errorHandler.buildDepError "incipit-base"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
tests = {
"exon-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."exon" or (errorHandler.buildDepError "exon"))
(hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog"))
(hsPkgs."incipit-base" or (errorHandler.buildDepError "incipit-base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
};
benchmarks = {
"exon-bench" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
(hsPkgs."exon" or (errorHandler.buildDepError "exon"))
(hsPkgs."incipit-base" or (errorHandler.buildDepError "incipit-base"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 3f06753

Please sign in to comment.