Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Sep 27, 2024
1 parent 07bc5cc commit 9a52430
Show file tree
Hide file tree
Showing 25 changed files with 1,015 additions and 0 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13134,6 +13134,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"qlinear" = import ./nix/qlinear.nix;
"qm-interpolated-string" = import ./nix/qm-interpolated-string.nix;
"qnap-decrypt" = import ./nix/qnap-decrypt.nix;
"qq-bytes" = import ./nix/qq-bytes.nix;
"qq-literals" = import ./nix/qq-literals.nix;
"qr" = import ./nix/qr.nix;
"qr-imager" = import ./nix/qr-imager.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { development = false; };
package = {
specVersion = "1.18";
identifier = { name = "composition-prelude"; version = "3.0.1.0"; };
license = "BSD-3-Clause";
copyright = "Copyright: (c) 2017-2020 Vanessa McHale";
maintainer = "[email protected]";
author = "Vanessa McHale";
homepage = "";
url = "";
synopsis = "Higher-order function combinators";
description = "Replacement for [composition](hackage.haskell.org/package/composition) or [composition-extra](hackage.haskell.org/package/composition-extra), exporting everything in one module.";
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,58 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "elm-bridge"; version = "0.8.4"; };
license = "BSD-3-Clause";
copyright = "(c) 2015 - 2016 Alexander Thiemann and contributors";
maintainer = "Alexander Thiemann <[email protected]>";
author = "Alexander Thiemann <[email protected]>, Simon Marechal <[email protected]>";
homepage = "https://github.com/agrafix/elm-bridge";
url = "";
synopsis = "Derive Elm types and Json code from Haskell types, using aeson's options";
description = "Building the bridge from Haskell to Elm and back. Define types once,\nand derive the aeson and elm functions at the same time, using any aeson\noption you like. Cheers!";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
];
buildable = true;
};
tests = {
"end-to-end-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"derive-elm-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "github-app-token"; version = "0.0.2.0"; };
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."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers"))
(hsPkgs."path" or (errorHandler.buildDepError "path"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
];
buildable = true;
};
tests = {
"readme" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(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."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"spec" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(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,73 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "github-app-token"; version = "0.0.3.0"; };
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."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers"))
(hsPkgs."path" or (errorHandler.buildDepError "path"))
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
];
buildable = true;
};
tests = {
"readme" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(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."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"spec" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(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,47 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.2";
identifier = { name = "hslua-list"; version = "1.1.3"; };
license = "MIT";
copyright = "© 2022-2024 Albert Krewinkel";
maintainer = "Albert Krewinkel <[email protected]>";
author = "Albert Krewinkel";
homepage = "https://hslua.org/";
url = "";
synopsis = "Opinionated, but extensible Lua list type.";
description = "List type for Lua, with a Haskell interface.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
];
buildable = true;
};
tests = {
"hslua-list-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core"))
(hsPkgs."hslua-list" or (errorHandler.buildDepError "hslua-list"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-lua" or (errorHandler.buildDepError "tasty-lua"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 9a52430

Please sign in to comment.