Skip to content

Commit 6730838

Browse files
author
IOHK
committed
Automatic Update
1 parent ded55e6 commit 6730838

File tree

49 files changed

+2103
-3
lines changed

Some content is hidden

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

49 files changed

+2103
-3
lines changed

default.nix

+4
Original file line numberDiff line numberDiff line change
@@ -15728,6 +15728,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1572815728
"text-render" = import ./nix/text-render.nix;
1572915729
"text-replace" = import ./nix/text-replace.nix;
1573015730
"text-rope" = import ./nix/text-rope.nix;
15731+
"text-rope-zipper" = import ./nix/text-rope-zipper.nix;
1573115732
"text-short" = import ./nix/text-short.nix;
1573215733
"text-show" = import ./nix/text-show.nix;
1573315734
"text-show-instances" = import ./nix/text-show-instances.nix;
@@ -16622,6 +16623,8 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1662216623
"util-universe" = import ./nix/util-universe.nix;
1662316624
"utility-ht" = import ./nix/utility-ht.nix;
1662416625
"utxorpc" = import ./nix/utxorpc.nix;
16626+
"utxorpc-client" = import ./nix/utxorpc-client.nix;
16627+
"utxorpc-server" = import ./nix/utxorpc-server.nix;
1662516628
"uu-cco" = import ./nix/uu-cco.nix;
1662616629
"uu-cco-examples" = import ./nix/uu-cco-examples.nix;
1662716630
"uu-cco-hut-parsing" = import ./nix/uu-cco-hut-parsing.nix;
@@ -17236,6 +17239,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1723617239
"x11-xim" = import ./nix/x11-xim.nix;
1723717240
"x11-xinput" = import ./nix/x11-xinput.nix;
1723817241
"x509" = import ./nix/x509.nix;
17242+
"x509-ocsp" = import ./nix/x509-ocsp.nix;
1723917243
"x509-store" = import ./nix/x509-store.nix;
1724017244
"x509-system" = import ./nix/x509-system.nix;
1724117245
"x509-util" = import ./nix/x509-util.nix;
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.12";
14+
identifier = { name = "FULE"; version = "0.3.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2022, 2023 Paul Schnapp";
17+
maintainer = "[email protected]";
18+
author = "Paul Schnapp";
19+
homepage = "https://github.com/pschnapp/FULE#readme";
20+
url = "";
21+
synopsis = "Functional UI Layout Engine";
22+
description = "Please see the README on GitHub at <https://github.com/pschnapp/FULE#readme>";
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."deepseq" or (errorHandler.buildDepError "deepseq"))
31+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
32+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
33+
];
34+
buildable = true;
35+
};
36+
tests = {
37+
"FULE-test" = {
38+
depends = [
39+
(hsPkgs."FULE" or (errorHandler.buildDepError "FULE"))
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
42+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
43+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
44+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
45+
];
46+
buildable = true;
47+
};
48+
};
49+
};
50+
}
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 = { finitary = true; };
12+
package = {
13+
specVersion = "2.4";
14+
identifier = { name = "acts"; version = "0.3.1.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Sam Derbyshire";
18+
author = "Sam Derbyshire";
19+
homepage = "https://github.com/sheaf/acts";
20+
url = "";
21+
synopsis = "Semigroup actions and torsors.";
22+
description = "Acts and torsors model types which can be transformed under the action of another type.\n\nA prototypical example is affine space, which has an action by translation:\ngiven any two points in affine space, there is a unique translation that brings one to the other.\n\nThis can be useful in a library keeping track of time: on top of needing to keep track\nof units, one also needs to distinguish between absolute time (time stamps) and relative time\n(time differences).\nThe operations one expects in this situation are:\n\n* Addition and subtraction of time differences: time differences form a (commutative) group.\n* Translation of an absolute time by a time difference: there is an action of relative time on absolute time.\n* Given two absolute times, one can obtain the time difference between them: absolute time is a torsor under relative time.\n\nThis library provides a convenient framework which helps to avoid mixing up these two different notions.\n\n\nA fleshed out example is available at \"Acts.Examples.MusicalIntervals\",\nwhich showcases the use of actions and torsors in the context of musical intervals and harmony.\nIt also demonstrates common usage patterns of this library, such as how to automatically derive instances.\n\nSee also the [project readme](https://github.com/sheaf/acts),\nwhich includes a simple example with 2D affine space.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."groups" or (errorHandler.buildDepError "groups"))
30+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
31+
] ++ (pkgs.lib).optionals (flags.finitary) [
32+
(hsPkgs."finitary" or (errorHandler.buildDepError "finitary"))
33+
(hsPkgs."finite-typelits" or (errorHandler.buildDepError "finite-typelits"))
34+
];
35+
buildable = true;
36+
};
37+
sublibs = {
38+
"acts-examples" = {
39+
depends = [
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."groups" or (errorHandler.buildDepError "groups"))
42+
(hsPkgs."acts" or (errorHandler.buildDepError "acts"))
43+
] ++ (pkgs.lib).optionals (flags.finitary) [
44+
(hsPkgs."finitary" or (errorHandler.buildDepError "finitary"))
45+
(hsPkgs."finite-typelits" or (errorHandler.buildDepError "finite-typelits"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
};
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { buildfast = true; production = false; };
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "blockfrost-api"; version = "0.10.0.0"; };
15+
license = "Apache-2.0";
16+
copyright = "2021 blockfrost.io";
17+
maintainer = "[email protected]";
18+
author = "blockfrost.io";
19+
homepage = "https://github.com/blockfrost/blockfrost-haskell";
20+
url = "";
21+
synopsis = "API definitions for blockfrost.io";
22+
description = "Core types and Servant API 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."containers" or (errorHandler.buildDepError "containers"))
31+
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
32+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
33+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
34+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
35+
(hsPkgs."deriving-aeson" or (errorHandler.buildDepError "deriving-aeson"))
36+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
37+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
38+
(hsPkgs."servant" or (errorHandler.buildDepError "servant"))
39+
(hsPkgs."servant-docs" or (errorHandler.buildDepError "servant-docs"))
40+
(hsPkgs."servant-multipart-api" or (errorHandler.buildDepError "servant-multipart-api"))
41+
(hsPkgs."safe-money" or (errorHandler.buildDepError "safe-money"))
42+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
43+
];
44+
buildable = true;
45+
};
46+
tests = {
47+
"blockfrost-api-tests" = {
48+
depends = [
49+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
50+
(hsPkgs."blockfrost-api" or (errorHandler.buildDepError "blockfrost-api"))
51+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
52+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
53+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
54+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
55+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
56+
(hsPkgs."safe-money" or (errorHandler.buildDepError "safe-money"))
57+
(hsPkgs."raw-strings-qq" or (errorHandler.buildDepError "raw-strings-qq"))
58+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
59+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
60+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
61+
(hsPkgs."tasty-hspec" or (errorHandler.buildDepError "tasty-hspec"))
62+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
63+
];
64+
build-tools = [
65+
(hsPkgs.buildPackages.tasty-discover.components.exes.tasty-discover or (pkgs.buildPackages.tasty-discover or (errorHandler.buildToolDepError "tasty-discover:tasty-discover")))
66+
];
67+
buildable = true;
68+
};
69+
};
70+
};
71+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { pure-haskell = false; };
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "bytestring"; version = "0.12.1.0"; };
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, especially long-term, without incurring any\npossible heap fragmentation costs.\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+
] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "9.4") (hsPkgs."data-array-byte" or (errorHandler.buildDepError "data-array-byte"))) ++ (pkgs.lib).optional (system.isJavaScript || flags.pure-haskell) (hsPkgs."base" or (errorHandler.buildDepError "base"));
33+
libs = (pkgs.lib).optionals (!(system.isJavaScript || flags.pure-haskell)) ((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+
(hsPkgs."syb" or (errorHandler.buildDepError "syb"))
49+
];
50+
buildable = true;
51+
};
52+
};
53+
benchmarks = {
54+
"bytestring-bench" = {
55+
depends = [
56+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
57+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
58+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
59+
(hsPkgs."tasty-bench" or (errorHandler.buildDepError "tasty-bench"))
60+
(hsPkgs."random" or (errorHandler.buildDepError "random"))
61+
];
62+
buildable = true;
63+
};
64+
};
65+
};
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 = "cabal-gild"; version = "0.3.0.1"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Taylor Fausak";
18+
author = "Taylor Fausak";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Formats package descriptions.";
22+
description = "Gild formats package descriptions.";
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."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
32+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
33+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
34+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
35+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
36+
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
39+
];
40+
buildable = true;
41+
};
42+
exes = {
43+
"cabal-gild" = {
44+
depends = [
45+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
46+
(hsPkgs."cabal-gild" or (errorHandler.buildDepError "cabal-gild"))
47+
];
48+
buildable = true;
49+
};
50+
};
51+
tests = {
52+
"cabal-gild-test-suite" = {
53+
depends = [
54+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
55+
(hsPkgs."cabal-gild" or (errorHandler.buildDepError "cabal-gild"))
56+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
57+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
58+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
59+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
60+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
61+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
62+
];
63+
buildable = true;
64+
};
65+
};
66+
};
67+
}

0 commit comments

Comments
 (0)