Skip to content

Commit 8bbb206

Browse files
author
IOHK
committed
Automatic Update
1 parent ec33640 commit 8bbb206

File tree

117 files changed

+4703
-6
lines changed

Some content is hidden

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

117 files changed

+4703
-6
lines changed

default.nix

+13
Original file line numberDiff line numberDiff line change
@@ -2443,6 +2443,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
24432443
"axiom" = import ./nix/axiom.nix;
24442444
"axiomatic-classes" = import ./nix/axiomatic-classes.nix;
24452445
"azimuth-hs" = import ./nix/azimuth-hs.nix;
2446+
"aztecs" = import ./nix/aztecs.nix;
24462447
"azubi" = import ./nix/azubi.nix;
24472448
"azure-acs" = import ./nix/azure-acs.nix;
24482449
"azure-email" = import ./nix/azure-email.nix;
@@ -6530,8 +6531,12 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
65306531
"gi-dbusmenugtk3" = import ./nix/gi-dbusmenugtk3.nix;
65316532
"gi-freetype2" = import ./nix/gi-freetype2.nix;
65326533
"gi-gdk" = import ./nix/gi-gdk.nix;
6534+
"gi-gdk3" = import ./nix/gi-gdk3.nix;
6535+
"gi-gdk4" = import ./nix/gi-gdk4.nix;
65336536
"gi-gdkpixbuf" = import ./nix/gi-gdkpixbuf.nix;
65346537
"gi-gdkx11" = import ./nix/gi-gdkx11.nix;
6538+
"gi-gdkx113" = import ./nix/gi-gdkx113.nix;
6539+
"gi-gdkx114" = import ./nix/gi-gdkx114.nix;
65356540
"gi-ges" = import ./nix/gi-ges.nix;
65366541
"gi-ggit" = import ./nix/gi-ggit.nix;
65376542
"gi-gio" = import ./nix/gi-gio.nix;
@@ -6554,13 +6559,19 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
65546559
"gi-gtk-declarative-app-simple" = import ./nix/gi-gtk-declarative-app-simple.nix;
65556560
"gi-gtk-hs" = import ./nix/gi-gtk-hs.nix;
65566561
"gi-gtk-layer-shell" = import ./nix/gi-gtk-layer-shell.nix;
6562+
"gi-gtk3" = import ./nix/gi-gtk3.nix;
6563+
"gi-gtk4" = import ./nix/gi-gtk4.nix;
65576564
"gi-gtkosxapplication" = import ./nix/gi-gtkosxapplication.nix;
65586565
"gi-gtksheet" = import ./nix/gi-gtksheet.nix;
65596566
"gi-gtksource" = import ./nix/gi-gtksource.nix;
6567+
"gi-gtksource3" = import ./nix/gi-gtksource3.nix;
6568+
"gi-gtksource5" = import ./nix/gi-gtksource5.nix;
65606569
"gi-handy" = import ./nix/gi-handy.nix;
65616570
"gi-harfbuzz" = import ./nix/gi-harfbuzz.nix;
65626571
"gi-ibus" = import ./nix/gi-ibus.nix;
65636572
"gi-javascriptcore" = import ./nix/gi-javascriptcore.nix;
6573+
"gi-javascriptcore4" = import ./nix/gi-javascriptcore4.nix;
6574+
"gi-javascriptcore6" = import ./nix/gi-javascriptcore6.nix;
65646575
"gi-json" = import ./nix/gi-json.nix;
65656576
"gi-keybinder" = import ./nix/gi-keybinder.nix;
65666577
"gi-nm" = import ./nix/gi-nm.nix;
@@ -6572,6 +6583,8 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
65726583
"gi-rsvg" = import ./nix/gi-rsvg.nix;
65736584
"gi-secret" = import ./nix/gi-secret.nix;
65746585
"gi-soup" = import ./nix/gi-soup.nix;
6586+
"gi-soup2" = import ./nix/gi-soup2.nix;
6587+
"gi-soup3" = import ./nix/gi-soup3.nix;
65756588
"gi-vips" = import ./nix/gi-vips.nix;
65766589
"gi-vte" = import ./nix/gi-vte.nix;
65776590
"gi-webkit" = import ./nix/gi-webkit.nix;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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.24";
14+
identifier = { name = "HasCacBDD"; version = "0.3.0.0"; };
15+
license = "GPL-2.0-only";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Malvin Gattinger";
19+
homepage = "https://github.com/m4lvin/HasCacBDD";
20+
url = "";
21+
synopsis = "Haskell bindings for CacBDD";
22+
description = "Haskell bindings for CacBDD, a Binary Decision Diagram (BDD) package with dynamic cache management.\nOriginal C++ code from <http://kailesu.net/CacBDD> and a C wrapper are included.";
23+
buildType = "Custom";
24+
setup-depends = [
25+
(hsPkgs.pkgsBuildBuild.base or (pkgs.pkgsBuildBuild.base or (errorHandler.setupDepError "base")))
26+
(hsPkgs.pkgsBuildBuild.Cabal or (pkgs.pkgsBuildBuild.Cabal or (errorHandler.setupDepError "Cabal")))
27+
(hsPkgs.pkgsBuildBuild.directory or (pkgs.pkgsBuildBuild.directory or (errorHandler.setupDepError "directory")))
28+
];
29+
};
30+
components = {
31+
"library" = {
32+
depends = [
33+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
34+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
35+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
36+
];
37+
libs = [
38+
(pkgs."stdc++" or (errorHandler.sysDepError "stdc++"))
39+
(pkgs."CacBDD" or (errorHandler.sysDepError "CacBDD"))
40+
];
41+
buildable = true;
42+
};
43+
tests = {
44+
"tests" = {
45+
depends = [
46+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
47+
(hsPkgs."HasCacBDD" or (errorHandler.buildDepError "HasCacBDD"))
48+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
49+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
50+
];
51+
buildable = true;
52+
};
53+
};
54+
};
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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 = "aeson-jsonpath"; version = "0.2.0.0"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Taimoor Zaeem <[email protected]>";
18+
author = "Taimoor Zaeem";
19+
homepage = "https://github.com/taimoorzaeem/aeson-jsonpath";
20+
url = "";
21+
synopsis = "Parse and run JSONPath queries on Aeson documents";
22+
description = "RFC 9535 compliant JSONPath parsing and querying\npackage. JSONPath is similar to XPath for querying XML documents.";
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."parsec" or (errorHandler.buildDepError "parsec"))
31+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
32+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
33+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
34+
];
35+
buildable = true;
36+
};
37+
tests = {
38+
"spec" = {
39+
depends = [
40+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
41+
(hsPkgs."aeson-jsonpath" or (errorHandler.buildDepError "aeson-jsonpath"))
42+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
43+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
44+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
45+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
};
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 = "aztecs"; version = "0.1.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Matt Hunzinger";
19+
homepage = "";
20+
url = "";
21+
synopsis = "A type-safe and friendly ECS for Haskell ";
22+
description = "A type-safe and friendly ECS for Haskell \nexposed-modules:\n Data.Aztecs\n Data.Aztecs.Core\n Data.Aztecs.Command\n Data.Aztecs.Schedule\n Data.Aztecs.System\n Data.Aztecs.Storage\n Data.Aztecs.Task\n Data.Aztecs.Query\n Data.Aztecs.World\n Data.Aztecs.World.Archetypes\n Data.Aztecs.World.Components\n\nhs-source-dirs: src\ndefault-language: Haskell2010\nghc-options: -Wall\nbuild-depends:\n base >=4 && <5,\n async >=2,\n containers >=0.7,\n mtl >=2";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
exes = {
27+
"ecs" = {
28+
depends = [
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
31+
];
32+
buildable = true;
33+
};
34+
};
35+
tests = {
36+
"aztecs-test" = {
37+
depends = [
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
40+
];
41+
buildable = true;
42+
};
43+
};
44+
benchmarks = {
45+
"aztecs-bench" = {
46+
depends = [
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
49+
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
50+
];
51+
buildable = true;
52+
};
53+
};
54+
};
55+
}
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 = "3.0";
14+
identifier = { name = "aztecs"; version = "0.1.0.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Matt Hunzinger";
19+
homepage = "";
20+
url = "";
21+
synopsis = "A type-safe and friendly ECS for Haskell ";
22+
description = "A type-safe and friendly ECS for Haskell ";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
30+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
31+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
32+
];
33+
buildable = true;
34+
};
35+
exes = {
36+
"ecs" = {
37+
depends = [
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
40+
];
41+
buildable = true;
42+
};
43+
};
44+
tests = {
45+
"aztecs-test" = {
46+
depends = [
47+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
48+
(hsPkgs."aztecs" or (errorHandler.buildDepError "aztecs"))
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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 = "bytestring"; version = "0.11.5.4"; };
15+
license = "BSD-3-Clause";
16+
copyright = "Copyright (c) Don Stewart 2005-2009,\n(c) Duncan Coutts 2006-2015,\n(c) David Roundy 2003-2005,\n(c) Jasper Van der Jeugt 2010,\n(c) Simon Meier 2010-2013.";
17+
maintainer = "Haskell Bytestring Team <[email protected]>, Core Libraries Committee";
18+
author = "Don Stewart,\nDuncan Coutts";
19+
homepage = "https://github.com/haskell/bytestring";
20+
url = "";
21+
synopsis = "Fast, compact, strict and lazy byte strings with a list interface";
22+
description = "An efficient compact, immutable byte string type (both strict and lazy)\nsuitable for binary or 8-bit character data.\n\nThe 'ByteString' type represents sequences of bytes or 8-bit characters.\nIt is suitable for high performance use, both in terms of large data\nquantities, or high speed requirements. The 'ByteString' functions follow\nthe same style as Haskell\\'s ordinary lists, so it is easy to convert code\nfrom using 'String' to 'ByteString'.\n\nTwo 'ByteString' variants are provided:\n\n* Strict 'ByteString's keep the string as a single large array. This\nmakes them convenient for passing data between C and Haskell.\n\n* Lazy 'ByteString's use a lazy list of strict chunks which makes it\nsuitable for I\\/O streaming tasks.\n\nThe @Char8@ modules provide a character-based view of the same\nunderlying 'ByteString' types. This makes it convenient to handle mixed\nbinary and 8-bit character content (which is common in many file formats\nand network protocols).\n\nThe 'Builder' module provides an efficient way to build up 'ByteString's\nin an ad-hoc way by repeated concatenation. This is ideal for fast\nserialisation or pretty printing.\n\nThere is also a 'ShortByteString' type which has a lower memory overhead\nand can be converted to or from a 'ByteString'. It is suitable for keeping\nmany short strings in memory.\n\n'ByteString's are not designed for Unicode. For Unicode strings you should\nuse the 'Text' type from the @text@ package.\n\nThese modules are intended to be imported qualified, to avoid name clashes\nwith \"Prelude\" functions, e.g.\n\n> import qualified Data.ByteString as BS";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
30+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
31+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
32+
];
33+
libs = pkgs.lib.optional (system.isWindows && (compiler.isGhc && compiler.version.lt "9.3")) (pkgs."gcc" or (errorHandler.sysDepError "gcc"));
34+
buildable = true;
35+
};
36+
tests = {
37+
"bytestring-tests" = {
38+
depends = [
39+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
40+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
41+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
42+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
43+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
44+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
45+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
46+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
47+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
48+
];
49+
buildable = true;
50+
};
51+
};
52+
benchmarks = {
53+
"bytestring-bench" = {
54+
depends = [
55+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
56+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
57+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
58+
(hsPkgs."tasty-bench" or (errorHandler.buildDepError "tasty-bench"))
59+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
60+
];
61+
buildable = true;
62+
};
63+
};
64+
};
65+
}

0 commit comments

Comments
 (0)