Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Sep 19, 2024
1 parent 1d222a4 commit 8f70a72
Show file tree
Hide file tree
Showing 53 changed files with 2,109 additions and 16 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17796,6 +17796,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"yesod-worker" = import ./nix/yesod-worker.nix;
"yet-another-logger" = import ./nix/yet-another-logger.nix;
"yggdrasil" = import ./nix/yggdrasil.nix;
"yggdrasil-schema" = import ./nix/yggdrasil-schema.nix;
"yhccore" = import ./nix/yhccore.nix;
"yhseq" = import ./nix/yhseq.nix;
"yi" = import ./nix/yi.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "diagrams-canvas"; version = "1.4.1.2"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "[email protected]";
author = "Jeffrey Rosenbluth, Ryan Yates, Brent Yorgey, Andy Gill, Daniel Bergey";
homepage = "https://diagrams.github.io/";
url = "";
synopsis = "HTML5 canvas backend for diagrams drawing EDSL";
description = "This package provides a modular backend for rendering\ndiagrams created with the diagrams EDSL using an\nHTML5 canvas.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."NumInstances" or (errorHandler.buildDepError "NumInstances"))
(hsPkgs."diagrams-core" or (errorHandler.buildDepError "diagrams-core"))
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib"))
(hsPkgs."cmdargs" or (errorHandler.buildDepError "cmdargs"))
(hsPkgs."blank-canvas" or (errorHandler.buildDepError "blank-canvas"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
(hsPkgs."statestack" or (errorHandler.buildDepError "statestack"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
];
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.12";
identifier = { name = "free-alacarte"; version = "1.0.0.4"; };
license = "LGPL-3.0-only";
copyright = "";
maintainer = "Josep Bigorra <[email protected]>";
author = "";
homepage = "https://github.com/jjba23/free-alacarte";
url = "";
synopsis = "Free monads based on intuitions from the Data types à la Carte. ";
description = "Free monads based on intuitions from the Data types à la Carte paper. Combine functors and make embedded DSLs in Haskell.";
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,62 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.4";
identifier = { name = "futhark-data"; version = "1.1.1.0"; };
license = "ISC";
copyright = "";
maintainer = "[email protected]";
author = "Troels Henriksen";
homepage = "";
url = "";
synopsis = "An implementation of the Futhark data format.";
description = "The Futhark compiler and its tools uses a simple external\ndata representation to encode arrays and scalars. This\npackage implements both a Haskell-level representation of\nthese values, as well as utility functions for reading\nand writing values in both the textual and binary format.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."bytestring-to-vector" or (errorHandler.buildDepError "bytestring-to-vector"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."half" or (errorHandler.buildDepError "half"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances"))
];
buildable = true;
};
tests = {
"futhark-data-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."futhark-data" or (errorHandler.buildDepError "futhark-data"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(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"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "github-app-token"; version = "0.0.1.1"; };
license = "MIT";
copyright = "";
maintainer = "Freckle Education";
author = "";
homepage = "https://github.com/freckle/github-app-token#readme";
url = "";
synopsis = "Generate an installation access token for a GitHub App";
description = "Please see README.md";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."jwt" or (errorHandler.buildDepError "jwt"))
(hsPkgs."path" or (errorHandler.buildDepError "path"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
];
buildable = true;
};
tests = {
"readme" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."dotenv" or (errorHandler.buildDepError "dotenv"))
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson"))
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
];
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 = "2.0";
identifier = { name = "haskell-gi-base"; version = "0.26.8"; };
license = "LGPL-2.1-only";
copyright = "";
maintainer = "Iñaki García Etxebarria ([email protected])";
author = "Will Thompson,\nIñaki García Etxebarria,\nJonas Platte";
homepage = "https://github.com/haskell-gi/haskell-gi";
url = "";
synopsis = "Foundation for libraries generated by haskell-gi";
description = "Foundation for libraries generated by haskell-gi";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
pkgconfig = [
(pkgconfPkgs."gobject-2.0" or (errorHandler.pkgConfDepError "gobject-2.0"))
(pkgconfPkgs."glib-2.0" or (errorHandler.pkgConfDepError "glib-2.0"))
];
build-tools = [
(hsPkgs.pkgsBuildBuild.hsc2hs.components.exes.hsc2hs or (pkgs.pkgsBuildBuild.hsc2hs or (errorHandler.buildToolDepError "hsc2hs:hsc2hs")))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { use-hdf5-serial = false; };
package = {
specVersion = "1.10";
identifier = { name = "hdf5"; version = "1.8.13"; };
license = "LicenseRef-PublicDomain";
copyright = "";
maintainer = "Picca Frédéric-Emmanuel <[email protected]>";
author = "James Cook <[email protected]>";
homepage = "https://github.com/picca/hs-hdf5";
url = "";
synopsis = "Haskell interface to the HDF5 scientific data storage library.";
description = "This is a low-level but typesafe Haskell interface to the HDF5 library. No pointers necessary.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bindings-DSL" or (errorHandler.buildDepError "bindings-DSL"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."libffi" or (errorHandler.buildDepError "libffi"))
(hsPkgs."lifted-base" or (errorHandler.buildDepError "lifted-base"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
pkgconfig = if flags.use-hdf5-serial
then [
(pkgconfPkgs."hdf5-serial" or (errorHandler.pkgConfDepError "hdf5-serial"))
]
else [
(pkgconfPkgs."hdf5" or (errorHandler.pkgConfDepError "hdf5"))
];
buildable = true;
};
tests = {
"hdf5-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
(hsPkgs."hdf5" or (errorHandler.buildDepError "hdf5"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "keuringsdienst"; version = "1.0.0.10"; };
license = "LGPL-3.0-only";
copyright = "";
maintainer = "Josep Bigorra <[email protected]>";
author = "";
homepage = "";
url = "";
synopsis = "";
description = "See README at https://github.com/jjba23/keuringsdienst";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
tests = {
"keuringsdienst-spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."keuringsdienst" or (errorHandler.buildDepError "keuringsdienst"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 8f70a72

Please sign in to comment.