Skip to content

Commit 980c350

Browse files
author
IOHK
committed
Automatic Update
1 parent 98e78a0 commit 980c350

File tree

77 files changed

+3618
-8
lines changed

Some content is hidden

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

77 files changed

+3618
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {
12+
debug = false;
13+
debug-serialisation = false;
14+
debug-parsing = false;
15+
enable-cluster-counting = false;
16+
optimise-heavily = false;
17+
};
18+
package = {
19+
specVersion = "2.4";
20+
identifier = { name = "Agda"; version = "2.6.4.3"; };
21+
license = "MIT";
22+
copyright = "(c) 2005-2024 The Agda Team.";
23+
maintainer = "The Agda Team";
24+
author = "The Agda Team, see https://agda.readthedocs.io/en/latest/team.html";
25+
homepage = "https://wiki.portal.chalmers.se/agda/";
26+
url = "";
27+
synopsis = "A dependently typed functional programming language and proof assistant";
28+
description = "Agda is a dependently typed functional programming language: It has\ninductive families, which are similar to Haskell's GADTs, but they\ncan be indexed by values and not just types. It also has\nparameterised modules, mixfix operators, Unicode characters, and an\ninteractive Emacs interface (the type checker can assist in the\ndevelopment of your code).\n\nAgda is also a proof assistant: It is an interactive system for\nwriting and checking proofs. Agda is based on intuitionistic type\ntheory, a foundational system for constructive mathematics developed\nby the Swedish logician Per Martin-Löf. It has many\nsimilarities with other proof assistants based on dependent types,\nsuch as Coq, Idris, Lean and NuPRL.\n\nThis package includes both a command-line program (agda) and an\nEmacs mode. If you want to use the Emacs mode you can set it up by\nrunning @agda-mode setup@ (see the README).\n\nNote that the Agda package does not follow the package versioning\npolicy, because it is not intended to be used by third-party\npackages.";
29+
buildType = "Custom";
30+
setup-depends = [
31+
(hsPkgs.buildPackages.base or (pkgs.buildPackages.base or (errorHandler.setupDepError "base")))
32+
(hsPkgs.buildPackages.Cabal or (pkgs.buildPackages.Cabal or (errorHandler.setupDepError "Cabal")))
33+
(hsPkgs.buildPackages.directory or (pkgs.buildPackages.directory or (errorHandler.setupDepError "directory")))
34+
(hsPkgs.buildPackages.filepath or (pkgs.buildPackages.filepath or (errorHandler.setupDepError "filepath")))
35+
(hsPkgs.buildPackages.process or (pkgs.buildPackages.process or (errorHandler.setupDepError "process")))
36+
];
37+
};
38+
components = {
39+
"library" = {
40+
depends = ([
41+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
42+
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
43+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
44+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
45+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
46+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
47+
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
48+
(hsPkgs."boxes" or (errorHandler.buildDepError "boxes"))
49+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
50+
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
51+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
52+
(hsPkgs."data-hash" or (errorHandler.buildDepError "data-hash"))
53+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
54+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
55+
(hsPkgs."dlist" or (errorHandler.buildDepError "dlist"))
56+
(hsPkgs."edit-distance" or (errorHandler.buildDepError "edit-distance"))
57+
(hsPkgs."equivalence" or (errorHandler.buildDepError "equivalence"))
58+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
59+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
60+
(hsPkgs."ghc-compact" or (errorHandler.buildDepError "ghc-compact"))
61+
(hsPkgs."gitrev" or (errorHandler.buildDepError "gitrev"))
62+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
63+
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline"))
64+
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
65+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
66+
(hsPkgs."murmur-hash" or (errorHandler.buildDepError "murmur-hash"))
67+
(hsPkgs."parallel" or (errorHandler.buildDepError "parallel"))
68+
(hsPkgs."peano" or (errorHandler.buildDepError "peano"))
69+
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
70+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
71+
(hsPkgs."regex-tdfa" or (errorHandler.buildDepError "regex-tdfa"))
72+
(hsPkgs."split" or (errorHandler.buildDepError "split"))
73+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
74+
(hsPkgs."STMonadTrans" or (errorHandler.buildDepError "STMonadTrans"))
75+
(hsPkgs."strict" or (errorHandler.buildDepError "strict"))
76+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
77+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
78+
(hsPkgs."time-compat" or (errorHandler.buildDepError "time-compat"))
79+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
80+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
81+
(hsPkgs."uri-encode" or (errorHandler.buildDepError "uri-encode"))
82+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
83+
(hsPkgs."vector-hashtables" or (errorHandler.buildDepError "vector-hashtables"))
84+
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib"))
85+
] ++ pkgs.lib.optional (flags.enable-cluster-counting) (hsPkgs."text-icu" or (errorHandler.buildDepError "text-icu"))) ++ pkgs.lib.optional (system.isWindows) (hsPkgs."Win32" or (errorHandler.buildDepError "Win32"));
86+
build-tools = [
87+
(hsPkgs.buildPackages.alex.components.exes.alex or (pkgs.buildPackages.alex or (errorHandler.buildToolDepError "alex:alex")))
88+
(hsPkgs.buildPackages.happy.components.exes.happy or (pkgs.buildPackages.happy or (errorHandler.buildToolDepError "happy:happy")))
89+
];
90+
buildable = (if compiler.isGhc && compiler.version.eq "8.6.1"
91+
then false
92+
else true) && (if system.isWindows && (compiler.isGhc && compiler.version.eq "8.6.3")
93+
then false
94+
else true);
95+
};
96+
exes = {
97+
"agda" = {
98+
depends = [
99+
(hsPkgs."Agda" or (errorHandler.buildDepError "Agda"))
100+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
101+
];
102+
buildable = true;
103+
};
104+
"agda-mode" = {
105+
depends = [
106+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
107+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
108+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
109+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
110+
];
111+
buildable = true;
112+
};
113+
};
114+
};
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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 = "algebraic-graphs"; version = "0.7"; };
15+
license = "MIT";
16+
copyright = "Andrey Mokhov, 2016-2022";
17+
maintainer = "Andrey Mokhov <[email protected]>, github: @snowleopard,\nAlexandre Moine <[email protected]>, github: @nobrakal";
18+
author = "Andrey Mokhov <[email protected]>, github: @snowleopard";
19+
homepage = "https://github.com/snowleopard/alga";
20+
url = "";
21+
synopsis = "A library for algebraic graph construction and transformation";
22+
description = "<https://github.com/snowleopard/alga Alga> is a library for algebraic construction and\nmanipulation of graphs in Haskell. See <https://github.com/snowleopard/alga-paper this paper>\nfor the motivation behind the library, the underlying theory and implementation details.\n\nThe top-level module\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph.html Algebra.Graph>\ndefines the main data type for /algebraic graphs/\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph.html#t:Graph Graph>,\nas well as associated algorithms. For type-safe representation and\nmanipulation of /non-empty algebraic graphs/, see\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-NonEmpty.html Algebra.Graph.NonEmpty>.\nFurthermore, /algebraic graphs with edge labels/ are implemented in\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-Labelled.html Algebra.Graph.Labelled>.\n\nThe library also provides conventional graph data structures, such as\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-AdjacencyMap.html Algebra.Graph.AdjacencyMap>\nalong with its various flavours:\n\n* adjacency maps specialised to graphs with vertices of type 'Int'\n(<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-AdjacencyIntMap.html Algebra.Graph.AdjacencyIntMap>),\n* non-empty adjacency maps\n(<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-NonEmpty-AdjacencyMap.html Algebra.Graph.NonEmpty.AdjacencyMap>),\n* adjacency maps for undirected bipartite graphs\n(<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-Bipartite-AdjacencyMap.html Algebra.Graph.Bipartite.AdjacencyMap>),\n* adjacency maps with edge labels\n(<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-Labelled-AdjacencyMap.html Algebra.Graph.Labelled.AdjacencyMap>),\n* acyclic adjacency maps\n(<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-Acyclic-AdjacencyMap.html Algebra.Graph.Acyclic.AdjacencyMap>),\n\nA large part of the API of algebraic graphs and adjacency maps is available\nthrough the 'Foldable'-like type class\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-ToGraph.html Algebra.Graph.ToGraph>.\n\nThe type classes defined in\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-Class.html Algebra.Graph.Class>\nand\n<http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph-HigherKinded-Class.html Algebra.Graph.HigherKinded.Class>\ncan be used for polymorphic construction and manipulation of graphs.\n\nThis is an experimental library and the API is expected to remain unstable until version 1.0.0.\nPlease consider contributing to the on-going\n<https://github.com/snowleopard/alga/issues discussions on the library API>.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
31+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
32+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
33+
];
34+
buildable = true;
35+
};
36+
tests = {
37+
"main" = {
38+
depends = [
39+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
42+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
43+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
44+
(hsPkgs."algebraic-graphs" or (errorHandler.buildDepError "algebraic-graphs"))
45+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
46+
(hsPkgs."inspection-testing" or (errorHandler.buildDepError "inspection-testing"))
47+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
48+
];
49+
buildable = true;
50+
};
51+
};
52+
};
53+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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 = "deep-transformations"; version = "0.2.3"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2019 Mario Blažević";
17+
maintainer = "[email protected]";
18+
author = "Mario Blažević";
19+
homepage = "https://github.com/blamario/grampa/tree/master/deep-transformations";
20+
url = "";
21+
synopsis = "Deep natural and unnatural tree transformations, including attribute grammars";
22+
description = "This library builds on the <http://hackage.haskell.org/package/rank2classes rank2classes> package to provide the\nequivalents of 'Functor' and related classes for heterogenous trees, including complex abstract syntax trees of\nreal-world programming languages.\n\nThe functionality includes attribute grammars in \"Transformation.AG\".";
23+
buildType = "Custom";
24+
setup-depends = [
25+
(hsPkgs.buildPackages.base or (pkgs.buildPackages.base or (errorHandler.setupDepError "base")))
26+
(hsPkgs.buildPackages.Cabal or (pkgs.buildPackages.Cabal or (errorHandler.setupDepError "Cabal")))
27+
(hsPkgs.buildPackages.cabal-doctest or (pkgs.buildPackages.cabal-doctest or (errorHandler.setupDepError "cabal-doctest")))
28+
];
29+
};
30+
components = {
31+
"library" = {
32+
depends = [
33+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
34+
(hsPkgs."rank2classes" or (errorHandler.buildDepError "rank2classes"))
35+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
36+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
37+
(hsPkgs."generic-lens" or (errorHandler.buildDepError "generic-lens"))
38+
];
39+
buildable = true;
40+
};
41+
tests = {
42+
"doctests" = {
43+
depends = [
44+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
45+
(hsPkgs."rank2classes" or (errorHandler.buildDepError "rank2classes"))
46+
(hsPkgs."deep-transformations" or (errorHandler.buildDepError "deep-transformations"))
47+
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest"))
48+
];
49+
build-tools = [
50+
(hsPkgs.buildPackages.markdown-unlit.components.exes.markdown-unlit or (pkgs.buildPackages.markdown-unlit or (errorHandler.buildToolDepError "markdown-unlit:markdown-unlit")))
51+
];
52+
buildable = true;
53+
};
54+
};
55+
};
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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.12";
14+
identifier = { name = "functor-products"; version = "0.1.2.2"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) Justin Le 2023";
17+
maintainer = "[email protected]";
18+
author = "Justin Le";
19+
homepage = "https://github.com/mstksg/functor-products#readme";
20+
url = "";
21+
synopsis = "General functor products for various Foldable instances";
22+
description = "Generalizes the Rec type in vinyl to work over various different Foldable\ninstances, instead of just lists. Provides a unifying abstraction for all\nof them, as well as data types to index into them.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."microlens" or (errorHandler.buildDepError "microlens"))
30+
(hsPkgs."singletons" or (errorHandler.buildDepError "singletons"))
31+
(hsPkgs."singletons-base" or (errorHandler.buildDepError "singletons-base"))
32+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
33+
(hsPkgs."vinyl" or (errorHandler.buildDepError "vinyl"))
34+
];
35+
buildable = true;
36+
};
37+
};
38+
}

0 commit comments

Comments
 (0)