Skip to content

Commit 9a52430

Browse files
author
IOHK
committed
Automatic Update
1 parent 07bc5cc commit 9a52430

25 files changed

+1015
-0
lines changed

default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13134,6 +13134,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1313413134
"qlinear" = import ./nix/qlinear.nix;
1313513135
"qm-interpolated-string" = import ./nix/qm-interpolated-string.nix;
1313613136
"qnap-decrypt" = import ./nix/qnap-decrypt.nix;
13137+
"qq-bytes" = import ./nix/qq-bytes.nix;
1313713138
"qq-literals" = import ./nix/qq-literals.nix;
1313813139
"qr" = import ./nix/qr.nix;
1313913140
"qr-imager" = import ./nix/qr-imager.nix;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { development = false; };
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "composition-prelude"; version = "3.0.1.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "Copyright: (c) 2017-2020 Vanessa McHale";
17+
maintainer = "[email protected]";
18+
author = "Vanessa McHale";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Higher-order function combinators";
22+
description = "Replacement for [composition](hackage.haskell.org/package/composition) or [composition-extra](hackage.haskell.org/package/composition-extra), exporting everything in one module.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
28+
buildable = true;
29+
};
30+
};
31+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "elm-bridge"; version = "0.8.4"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2015 - 2016 Alexander Thiemann and contributors";
17+
maintainer = "Alexander Thiemann <[email protected]>";
18+
author = "Alexander Thiemann <[email protected]>, Simon Marechal <[email protected]>";
19+
homepage = "https://github.com/agrafix/elm-bridge";
20+
url = "";
21+
synopsis = "Derive Elm types and Json code from Haskell types, using aeson's options";
22+
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!";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
30+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"end-to-end-tests" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge"))
39+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
40+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
41+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
42+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
43+
];
44+
buildable = true;
45+
};
46+
"derive-elm-tests" = {
47+
depends = [
48+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
49+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
50+
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge"))
51+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
52+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
53+
];
54+
buildable = true;
55+
};
56+
};
57+
};
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "github-app-token"; version = "0.0.2.0"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Freckle Education";
18+
author = "";
19+
homepage = "https://github.com/freckle/github-app-token#readme";
20+
url = "";
21+
synopsis = "Generate an installation access token for a GitHub App";
22+
description = "Please see README.md";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
32+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
33+
(hsPkgs."jwt" or (errorHandler.buildDepError "jwt"))
34+
(hsPkgs."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers"))
35+
(hsPkgs."path" or (errorHandler.buildDepError "path"))
36+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
39+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
40+
];
41+
buildable = true;
42+
};
43+
tests = {
44+
"readme" = {
45+
depends = [
46+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
49+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
50+
(hsPkgs."dotenv" or (errorHandler.buildDepError "dotenv"))
51+
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
52+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
53+
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
54+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
55+
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit"))
56+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
57+
];
58+
buildable = true;
59+
};
60+
"spec" = {
61+
depends = [
62+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
63+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
64+
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
65+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
66+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
67+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
68+
];
69+
buildable = true;
70+
};
71+
};
72+
};
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.18";
14+
identifier = { name = "github-app-token"; version = "0.0.3.0"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Freckle Education";
18+
author = "";
19+
homepage = "https://github.com/freckle/github-app-token#readme";
20+
url = "";
21+
synopsis = "Generate an installation access token for a GitHub App";
22+
description = "Please see README.md";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
32+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
33+
(hsPkgs."jwt" or (errorHandler.buildDepError "jwt"))
34+
(hsPkgs."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers"))
35+
(hsPkgs."path" or (errorHandler.buildDepError "path"))
36+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
39+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
40+
];
41+
buildable = true;
42+
};
43+
tests = {
44+
"readme" = {
45+
depends = [
46+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
49+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
50+
(hsPkgs."dotenv" or (errorHandler.buildDepError "dotenv"))
51+
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
52+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
53+
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
54+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
55+
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit"))
56+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
57+
];
58+
buildable = true;
59+
};
60+
"spec" = {
61+
depends = [
62+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
63+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
64+
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token"))
65+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
66+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
67+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
68+
];
69+
buildable = true;
70+
};
71+
};
72+
};
73+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "hslua-list"; version = "1.1.3"; };
15+
license = "MIT";
16+
copyright = "© 2022-2024 Albert Krewinkel";
17+
maintainer = "Albert Krewinkel <[email protected]>";
18+
author = "Albert Krewinkel";
19+
homepage = "https://hslua.org/";
20+
url = "";
21+
synopsis = "Opinionated, but extensible Lua list type.";
22+
description = "List type for Lua, with a Haskell interface.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"hslua-list-test" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core"))
39+
(hsPkgs."hslua-list" or (errorHandler.buildDepError "hslua-list"))
40+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
41+
(hsPkgs."tasty-lua" or (errorHandler.buildDepError "tasty-lua"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
};
47+
}

0 commit comments

Comments
 (0)