Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Sep 30, 2024
1 parent 2cbbe65 commit b9ffc60
Show file tree
Hide file tree
Showing 62 changed files with 2,938 additions and 12 deletions.
6 changes: 6 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10757,6 +10757,12 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"minimorph" = import ./nix/minimorph.nix;
"minimung" = import ./nix/minimung.nix;
"minio-hs" = import ./nix/minio-hs.nix;
"minion" = import ./nix/minion.nix;
"minion-conduit" = import ./nix/minion-conduit.nix;
"minion-htmx" = import ./nix/minion-htmx.nix;
"minion-jwt" = import ./nix/minion-jwt.nix;
"minion-openapi3" = import ./nix/minion-openapi3.nix;
"minion-wai-extra" = import ./nix/minion-wai-extra.nix;
"minions" = import ./nix/minions.nix;
"minioperational" = import ./nix/minioperational.nix;
"miniplex" = import ./nix/miniplex.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "PenroseKiteDart"; version = "1.1.0"; };
license = "BSD-3-Clause";
copyright = "2021 Chris Reade";
maintainer = "chrisreade@mac.com";
author = "Chris Reade";
homepage = "https://github.com/chrisreade/PenroseKiteDart#readme";
url = "";
synopsis = "Library to explore Penrose's Kite and Dart Tilings.";
description = "Library to explore Penrose's Kite and Dart Tilings using Haskell Diagrams. Please see README.md";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib"))
];
buildable = true;
};
tests = {
"PenroseKiteDart-test" = {
depends = [
(hsPkgs."PenroseKiteDart" or (errorHandler.buildDepError "PenroseKiteDart"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
];
buildable = true;
};
};
benchmarks = {
"PenroseKiteDart-bench" = {
depends = [
(hsPkgs."PenroseKiteDart" or (errorHandler.buildDepError "PenroseKiteDart"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib"))
];
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.10";
identifier = { name = "cabal-bounds"; version = "2.6.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "daniel.trstenjak@gmail.com";
author = "Daniel Trstenjak";
homepage = "";
url = "";
synopsis = "A command line program for managing the dependency versions in a cabal file.";
description = "A command line program for managing the bounds/versions of the dependencies in a cabal file.\n\n'cabal-bounds' is able to do these things with the bounds of the dependencies in the cabal file:\n\n* drop them\n\n* update them by the library versions of the current cabal build\n\n* update them by the library versions of a haskell platform release\n\n* update them by the library versions specified by a file\n\n* dump the libraries/dependencies and their lower bound versions from the cabal file(s) into a file\n\nFor further details please consult the <https://github.com/dan-t/cabal-bounds README>.\n\n/Issues/\n\nPerhaps the currently most annoying thing is, that you have to live with the reformating of your\n'cabal' file done by the pretty printer of the 'Cabal' library.\n\nTo only reformat your `cabal` file you can call `cabal-bounds format`.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cmdargs" or (errorHandler.buildDepError "cmdargs"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."strict" or (errorHandler.buildDepError "strict"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."cabal-lenses" or (errorHandler.buildDepError "cabal-lenses"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
exes = {
"cabal-bounds" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cabal-bounds" or (errorHandler.buildDepError "cabal-bounds"))
];
buildable = true;
};
};
tests = {
"cabal-bounds-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."Glob" or (errorHandler.buildDepError "Glob"))
(hsPkgs."cabal-bounds" or (errorHandler.buildDepError "cabal-bounds"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "cabal-cargs"; version = "1.6.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "daniel.trstenjak@gmail.com";
author = "Daniel Trstenjak";
homepage = "";
url = "";
synopsis = "A command line program for extracting compiler arguments from a cabal file.";
description = "For further details please consult the <https://github.com/dan-t/cabal-cargs README>.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cmdargs" or (errorHandler.buildDepError "cmdargs"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."system-filepath" or (errorHandler.buildDepError "system-filepath"))
(hsPkgs."system-fileio" or (errorHandler.buildDepError "system-fileio"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."cabal-lenses" or (errorHandler.buildDepError "cabal-lenses"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
];
buildable = true;
};
exes = {
"cabal-cargs" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cabal-cargs" or (errorHandler.buildDepError "cabal-cargs"))
];
buildable = true;
};
};
tests = {
"tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."cabal-cargs" or (errorHandler.buildDepError "cabal-cargs"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "cabal-lenses"; version = "0.15.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "daniel.trstenjak@gmail.com";
author = "Daniel Trstenjak";
homepage = "";
url = "";
synopsis = "Lenses and traversals for the Cabal library.";
description = "Lenses and traversals (compatible with the <https://hackage.haskell.org/package/lens lens> library) for\nthe <https://hackage.haskell.org/package/Cabal Cabal> library.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."system-filepath" or (errorHandler.buildDepError "system-filepath"))
(hsPkgs."system-fileio" or (errorHandler.buildDepError "system-fileio"))
(hsPkgs."strict" or (errorHandler.buildDepError "strict"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "defaultable-map"; version = "1.0.2"; };
license = "BSD-3-Clause";
copyright = "2022 Gabriella Gonzalez";
maintainer = "GenuineGabriella@gmail.com";
author = "Gabriella Gonzalez";
homepage = "";
url = "";
synopsis = "Applicative maps";
description = "This package provides a `Defaultable` type constructor that\nwraps any `Map`-like type to add an optional default value. \nWrapping a `Map`-like type in this way permits a valid\n`Applicative` instance, so you can think of this as an\n\"`Applicative` map\" package.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."semigroupoids" or (errorHandler.buildDepError "semigroupoids"))
];
buildable = true;
};
};
}
Loading

0 comments on commit b9ffc60

Please sign in to comment.