Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Jan 20, 2024
1 parent 64c95ad commit 886719a
Show file tree
Hide file tree
Showing 56 changed files with 2,541 additions and 6 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5655,6 +5655,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"file-modules" = import ./nix/file-modules.nix;
"file-path-th" = import ./nix/file-path-th.nix;
"file-templates" = import ./nix/file-templates.nix;
"file-uri" = import ./nix/file-uri.nix;
"filecache" = import ./nix/filecache.nix;
"filediff" = import ./nix/filediff.nix;
"filelock" = import ./nix/filelock.nix;
Expand Down
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.18";
identifier = { name = "asana"; version = "1.0.1.1"; };
license = "MIT";
copyright = "";
maintainer = "Freckle Education";
author = "";
homepage = "https://github.com/freckle/asana-hs#readme";
url = "";
synopsis = "Asana API Client";
description = "Please see README.md";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."aeson-casing" or (errorHandler.buildDepError "aeson-casing"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."iso8601-time" or (errorHandler.buildDepError "iso8601-time"))
(hsPkgs."microlens" or (errorHandler.buildDepError "microlens"))
(hsPkgs."microlens-mtl" or (errorHandler.buildDepError "microlens-mtl"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
(hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "bureaucromancy"; version = "0.1.0.2"; };
license = "GPL-3.0-only";
copyright = "";
maintainer = "[email protected]";
author = "Adrian Cochrane";
homepage = "https://argonaut-constellation.org/";
url = "";
synopsis = "Parse webforms & render to interactive hypertext";
description = "";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ginger" or (errorHandler.buildDepError "ginger"))
(hsPkgs."file-embed-lzma" or (errorHandler.buildDepError "file-embed-lzma"))
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."xml-conduit" or (errorHandler.buildDepError "xml-conduit"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."regex-tdfa" or (errorHandler.buildDepError "regex-tdfa"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."hourglass" or (errorHandler.buildDepError "hourglass"))
(hsPkgs."tz" or (errorHandler.buildDepError "tz"))
];
buildable = true;
};
exes = {
"bureaucromancy" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bureaucromancy" or (errorHandler.buildDepError "bureaucromancy"))
(hsPkgs."warp" or (errorHandler.buildDepError "warp"))
(hsPkgs."wai" or (errorHandler.buildDepError "wai"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."html-conduit" or (errorHandler.buildDepError "html-conduit"))
];
buildable = true;
};
};
tests = {
"bureaucromancy-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bureaucromancy" or (errorHandler.buildDepError "bureaucromancy"))
];
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 = { test-different-solvers = false; };
package = {
specVersion = "1.12";
identifier = { name = "call-alloy"; version = "0.4.1.1"; };
license = "MIT";
copyright = "2019-2022 Marcellus Siegburg";
maintainer = "[email protected]";
author = "Marcellus Siegburg";
homepage = "https://github.com/marcellussiegburg/call-alloy#readme";
url = "";
synopsis = "A simple library to call Alloy given a specification";
description = "Please see the README on GitHub at <https://github.com/marcellussiegburg/call-alloy#readme>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."split" or (errorHandler.buildDepError "split"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."trifecta" or (errorHandler.buildDepError "trifecta"))
] ++ (if system.isWindows
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ]
else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]);
buildable = true;
};
tests = {
"call-alloy-test" = {
depends = [
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."call-alloy" or (errorHandler.buildDepError "call-alloy"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."split" or (errorHandler.buildDepError "split"))
(hsPkgs."string-interpolate" or (errorHandler.buildDepError "string-interpolate"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."trifecta" or (errorHandler.buildDepError "trifecta"))
] ++ (if system.isWindows
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ]
else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]);
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 = "1.10";
identifier = { name = "cayley-client"; version = "0.4.19.3"; };
license = "BSD-3-Clause";
copyright = "(c) 2015-2024 - Michel Boucey";
maintainer = "[email protected]";
author = "Michel Boucey";
homepage = "https://github.com/MichelBoucey/cayley-client";
url = "";
synopsis = "A Haskell client for the Cayley graph database";
description = "cayley-client implements the RESTful API of the Cayley graph database.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."http-client" or (errorHandler.buildDepError "http-client"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
tests = {
"tests" = {
depends = [
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cayley-client" or (errorHandler.buildDepError "cayley-client"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "digestive-functors"; version = "0.8.4.2"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Jasper Van der Jeugt <[email protected]>";
author = "Jasper Van der Jeugt <[email protected]>";
homepage = "http://github.com/jaspervdj/digestive-functors";
url = "";
synopsis = "A practical formlet library";
description = "Digestive functors is a library inspired by formlets:\n\n<http://groups.inf.ed.ac.uk/links/formlets/>\n\nIt is intended to be an improvement of the Haskell formlets library, with as\nmain advantages:\n\n* better error handling, so a web page can display input errors right next\nto the corresponding fields;\n\n* the ability to easily add @\\<label\\>@ elements;\n\n* separation of the validation model and the HTML output.\n\nTutorial:\n<http://github.com/jaspervdj/digestive-functors/blob/master/examples/tutorial.lhs>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
tests = {
"digestive-functors-tests" = {
depends = [
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(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"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.6";
identifier = { name = "digestive-functors-blaze"; version = "0.6.2.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Jasper Van der Jeugt <[email protected]>";
author = "Jasper Van der Jeugt <[email protected]>";
homepage = "http://github.com/jaspervdj/digestive-functors";
url = "";
synopsis = "Blaze frontend for the digestive-functors library";
description = "Blaze frontend for the digestive-functors library";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
(hsPkgs."blaze-markup" or (errorHandler.buildDepError "blaze-markup"))
(hsPkgs."digestive-functors" or (errorHandler.buildDepError "digestive-functors"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
}
Loading

0 comments on commit 886719a

Please sign in to comment.