Skip to content

Commit c4c57c2

Browse files
author
IOHK
committed
Automatic Update
1 parent 708c392 commit c4c57c2

File tree

56 files changed

+2029
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2029
-1
lines changed

default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9052,6 +9052,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
90529052
"ihaskell-parsec" = import ./nix/ihaskell-parsec.nix;
90539053
"ihaskell-plot" = import ./nix/ihaskell-plot.nix;
90549054
"ihaskell-rlangqq" = import ./nix/ihaskell-rlangqq.nix;
9055+
"ihaskell-symtegration" = import ./nix/ihaskell-symtegration.nix;
90559056
"ihaskell-widgets" = import ./nix/ihaskell-widgets.nix;
90569057
"ihp-hsx" = import ./nix/ihp-hsx.nix;
90579058
"ihp-openai" = import ./nix/ihp-openai.nix;
@@ -13256,9 +13257,11 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1325613257
"qsem" = import ./nix/qsem.nix;
1325713258
"qt" = import ./nix/qt.nix;
1325813259
"qtah-cpp-qt5" = import ./nix/qtah-cpp-qt5.nix;
13260+
"qtah-cpp-qt6" = import ./nix/qtah-cpp-qt6.nix;
1325913261
"qtah-examples" = import ./nix/qtah-examples.nix;
1326013262
"qtah-generator" = import ./nix/qtah-generator.nix;
1326113263
"qtah-qt5" = import ./nix/qtah-qt5.nix;
13264+
"qtah-qt6" = import ./nix/qtah-qt6.nix;
1326213265
"quaalude" = import ./nix/quaalude.nix;
1326313266
"quack" = import ./nix/quack.nix;
1326413267
"quadratic-irrational" = import ./nix/quadratic-irrational.nix;
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 = "active"; version = "0.2.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2011-2015 Brent Yorgey";
17+
maintainer = "[email protected]";
18+
author = "Brent Yorgey";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Abstractions for animation";
22+
description = "\"Active\" abstraction for animated things with finite start and end times.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
30+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
31+
(hsPkgs."semigroupoids" or (errorHandler.buildDepError "semigroupoids"))
32+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
33+
(hsPkgs."linear" or (errorHandler.buildDepError "linear"))
34+
];
35+
buildable = true;
36+
};
37+
tests = {
38+
"active-tests" = {
39+
depends = [
40+
(hsPkgs."active" or (errorHandler.buildDepError "active"))
41+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
42+
(hsPkgs."linear" or (errorHandler.buildDepError "linear"))
43+
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))
44+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
45+
];
46+
buildable = true;
47+
};
48+
};
49+
};
50+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { pedantic = false; };
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "autoexporter"; version = "2.0.0.13"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Taylor Fausak";
18+
author = "";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Automatically re-export modules.";
22+
description = "Autoexporter automatically re-exports modules.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."Cabal-syntax" or (errorHandler.buildDepError "Cabal-syntax"))
30+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
31+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
32+
];
33+
buildable = true;
34+
};
35+
exes = {
36+
"autoexporter" = {
37+
depends = [
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."autoexporter" or (errorHandler.buildDepError "autoexporter"))
40+
];
41+
buildable = true;
42+
};
43+
};
44+
};
45+
}
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "aws-spend-summary"; version = "0.2.0.1"; };
15+
license = "GPL-2.0-only";
16+
copyright = "(c) 2024 Daniel Rolls";
17+
maintainer = "[email protected]";
18+
author = "Daniel Rolls";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Extract recent daily AWS costs";
22+
description = "Please see the README on GitHub at <https://github.com/danielrolls/aws-spend-summary>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
29+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
(hsPkgs."amazonka" or (errorHandler.buildDepError "amazonka"))
32+
(hsPkgs."amazonka-core" or (errorHandler.buildDepError "amazonka-core"))
33+
(hsPkgs."amazonka-s3" or (errorHandler.buildDepError "amazonka-s3"))
34+
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
35+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
36+
(hsPkgs."cassava" or (errorHandler.buildDepError "cassava"))
37+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
38+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
39+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
40+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
41+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
42+
(hsPkgs."timelens" or (errorHandler.buildDepError "timelens"))
43+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
44+
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib"))
45+
];
46+
buildable = true;
47+
};
48+
exes = {
49+
"aws-spend-summary" = {
50+
depends = [
51+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
52+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
53+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
54+
(hsPkgs."aws-spend-summary" or (errorHandler.buildDepError "aws-spend-summary"))
55+
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
56+
];
57+
buildable = true;
58+
};
59+
};
60+
};
61+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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.4";
14+
identifier = { name = "aztecs"; version = "0.3.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Matt Hunzinger";
19+
homepage = "https://github.com/matthunz/aztecs";
20+
url = "";
21+
synopsis = "A type-safe and friendly Entity-Component-System (ECS) for Haskell";
22+
description = "The Entity-Component-System (ECS) pattern is commonly used in video game develop to represent world objects.\n\nECS follows the principal of composition over inheritence. Each type of\nobject (e.g. sword, monster, etc), in the game has a unique EntityId. Each\nentity has various Components associated with it (material, weight, damage, etc).\nSystems act on entities which have the required Components.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
30+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
31+
];
32+
buildable = true;
33+
};
34+
exes = {
35+
"ecs" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
39+
];
40+
buildable = true;
41+
};
42+
};
43+
tests = {
44+
"aztecs-test" = {
45+
depends = [
46+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
47+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
48+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
49+
];
50+
buildable = true;
51+
};
52+
};
53+
benchmarks = {
54+
"aztecs-bench" = {
55+
depends = [
56+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
57+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
58+
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
59+
];
60+
buildable = true;
61+
};
62+
};
63+
};
64+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "binary-parser"; version = "0.5.7.7"; };
15+
license = "MIT";
16+
copyright = "(c) 2015, Nikita Volkov";
17+
maintainer = "Nikita Volkov <[email protected]>";
18+
author = "Nikita Volkov <[email protected]>";
19+
homepage = "https://github.com/nikita-volkov/binary-parser";
20+
url = "";
21+
synopsis = "An efficient but limited parser API specialised to bytestrings";
22+
description = "";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
30+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
31+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
32+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
33+
];
34+
buildable = true;
35+
};
36+
tests = {
37+
"tests" = {
38+
depends = [
39+
(hsPkgs."base-prelude" or (errorHandler.buildDepError "base-prelude"))
40+
(hsPkgs."binary-parser" or (errorHandler.buildDepError "binary-parser"))
41+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
42+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
43+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
44+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
45+
];
46+
buildable = true;
47+
};
48+
};
49+
};
50+
}
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { pedantic = false; };
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "burrito"; version = "2.0.1.11"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Taylor Fausak";
18+
author = "";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Parse and render URI templates.";
22+
description = "Burrito is a Haskell library for parsing and rendering URI templates.\n\nAccording to [RFC 6570](https://tools.ietf.org/html/rfc6570): \"A URI Template\nis a compact sequence of characters for describing a range of Uniform\nResource Identifiers through variable expansion.\" Burrito implements URI\ntemplates according to the specification in that RFC.\n\nThe term \"uniform resource identifiers\" (URI) is often used interchangeably\nwith other related terms like \"internationalized resource identifier\" (IRI),\n\"uniform resource locator\" (URL), and \"uniform resource name\" (URN). Burrito\ncan be used for all of these. If you want to get technical, its input must be\na valid IRI and its output will be a valid URI or URN.\n\nAlthough Burrito is primarily intended to be used with HTTP and HTTPS URIs,\nit should work with other schemes as well.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
30+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
31+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
32+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
33+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
34+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
35+
];
36+
buildable = true;
37+
};
38+
tests = {
39+
"burrito-test-suite" = {
40+
depends = [
41+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
42+
(hsPkgs."burrito" or (errorHandler.buildDepError "burrito"))
43+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
44+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
45+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
46+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
47+
];
48+
buildable = true;
49+
};
50+
};
51+
};
52+
}

0 commit comments

Comments
 (0)