Skip to content

Commit 66f2336

Browse files
author
IOHK
committed
Automatic Update
1 parent 52bc8a0 commit 66f2336

17 files changed

+865
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 = "aeson-possible"; version = "0.1.0.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Jonathan Jouty <[email protected]>";
18+
author = "Jonathan Jouty";
19+
homepage = "https://github.com/jonathanjouty/aeson-possible";
20+
url = "";
21+
synopsis = "Possible values for aeson";
22+
description = "Three-valued possible types for use with aeson.\nUseful for use in PATCH endpoints.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
30+
];
31+
buildable = true;
32+
};
33+
tests = {
34+
"aeson-possible-test" = {
35+
depends = [
36+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
37+
(hsPkgs."aeson-possible" or (errorHandler.buildDepError "aeson-possible"))
38+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
41+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
42+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
43+
(hsPkgs."tasty-quickcheck-laws" or (errorHandler.buildDepError "tasty-quickcheck-laws"))
44+
];
45+
buildable = true;
46+
};
47+
};
48+
};
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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 = "fuzzyfind"; version = "3.0.2"; };
15+
license = "MIT";
16+
copyright = "Copyright (C) 2021 Unison Computing";
17+
maintainer = "Rúnar Bjarnason <[email protected]>";
18+
author = "Rúnar Bjarnason";
19+
homepage = "http://github.com/runarorama/fuzzyfind/";
20+
url = "";
21+
synopsis = "Fuzzy text matching";
22+
description = "A package that provides an API for fuzzy text search in Haskell, using a modified version of the Smith-Waterman algorithm. The search is intended to behave similarly to the excellent fzf tool by Junegunn Choi.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."massiv" or (errorHandler.buildDepError "massiv"))
30+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
31+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
32+
];
33+
buildable = true;
34+
};
35+
exes = {
36+
"bench" = {
37+
depends = [
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
40+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
41+
(hsPkgs."fuzzyfind" or (errorHandler.buildDepError "fuzzyfind"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
tests = {
47+
"spec" = {
48+
depends = [
49+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
50+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
51+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
52+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
53+
(hsPkgs."fuzzyfind" or (errorHandler.buildDepError "fuzzyfind"))
54+
];
55+
build-tools = [
56+
(hsPkgs.buildPackages.hspec-discover.components.exes.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
57+
];
58+
buildable = true;
59+
};
60+
};
61+
};
62+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { crypton = true; devel = false; };
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "http2-tls"; version = "0.3.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Kazu Yamamoto <[email protected]>";
18+
author = "Kazu Yamamoto <[email protected]>";
19+
homepage = "https://github.com/kazu-yamamoto/http2-tls";
20+
url = "";
21+
synopsis = "Library for HTTP/2 over TLS";
22+
description = "Using the HTTP/2 library over TLS";
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."data-default-class" or (errorHandler.buildDepError "data-default-class"))
31+
(hsPkgs."http2" or (errorHandler.buildDepError "http2"))
32+
(hsPkgs."network" or (errorHandler.buildDepError "network"))
33+
(hsPkgs."network-control" or (errorHandler.buildDepError "network-control"))
34+
(hsPkgs."network-run" or (errorHandler.buildDepError "network-run"))
35+
(hsPkgs."recv" or (errorHandler.buildDepError "recv"))
36+
(hsPkgs."time-manager" or (errorHandler.buildDepError "time-manager"))
37+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
38+
(hsPkgs."utf8-string" or (errorHandler.buildDepError "utf8-string"))
39+
] ++ (if flags.crypton
40+
then [
41+
(hsPkgs."tls" or (errorHandler.buildDepError "tls"))
42+
(hsPkgs."crypton-x509-store" or (errorHandler.buildDepError "crypton-x509-store"))
43+
(hsPkgs."crypton-x509-validation" or (errorHandler.buildDepError "crypton-x509-validation"))
44+
]
45+
else [
46+
(hsPkgs."tls" or (errorHandler.buildDepError "tls"))
47+
(hsPkgs."x509-store" or (errorHandler.buildDepError "x509-store"))
48+
(hsPkgs."x509-validation" or (errorHandler.buildDepError "x509-validation"))
49+
]);
50+
buildable = true;
51+
};
52+
exes = {
53+
"h2-client" = {
54+
depends = [
55+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
56+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
57+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
58+
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
59+
(hsPkgs."http-semantics" or (errorHandler.buildDepError "http-semantics"))
60+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
61+
(hsPkgs."http2" or (errorHandler.buildDepError "http2"))
62+
(hsPkgs."http2-tls" or (errorHandler.buildDepError "http2-tls"))
63+
(hsPkgs."tls" or (errorHandler.buildDepError "tls"))
64+
];
65+
buildable = if flags.devel then true else false;
66+
};
67+
"h2-server" = {
68+
depends = [
69+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
70+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
71+
(hsPkgs."crypton" or (errorHandler.buildDepError "crypton"))
72+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
73+
(hsPkgs."http2" or (errorHandler.buildDepError "http2"))
74+
(hsPkgs."http2-tls" or (errorHandler.buildDepError "http2-tls"))
75+
(hsPkgs."tls" or (errorHandler.buildDepError "tls"))
76+
(hsPkgs."tls-session-manager" or (errorHandler.buildDepError "tls-session-manager"))
77+
];
78+
buildable = if flags.devel then true else false;
79+
};
80+
};
81+
};
82+
}
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.10";
14+
identifier = { name = "jackpolynomials"; version = "1.4.5.0"; };
15+
license = "GPL-3.0-only";
16+
copyright = "2022-2024 Stéphane Laurent";
17+
maintainer = "[email protected]";
18+
author = "Stéphane Laurent";
19+
homepage = "https://github.com/stla/jackpolynomials#readme";
20+
url = "";
21+
synopsis = "Jack, zonal, Schur, and other symmetric polynomials";
22+
description = "This library can compute Jack polynomials, zonal polynomials, Schur polynomials, flagged Schur polynomials, factorial Schur polynomials, t-Schur polynomials, Hall-Littlewood polynomials, Macdonald polynomials, Kostka-Foulkes polynomials, and Kostka-Macdonald polynomials.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."ilist" or (errorHandler.buildDepError "ilist"))
30+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
31+
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
32+
(hsPkgs."hspray" or (errorHandler.buildDepError "hspray"))
33+
(hsPkgs."numeric-prelude" or (errorHandler.buildDepError "numeric-prelude"))
34+
(hsPkgs."combinat" or (errorHandler.buildDepError "combinat"))
35+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
36+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
37+
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
38+
(hsPkgs."matrix" or (errorHandler.buildDepError "matrix"))
39+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
40+
];
41+
buildable = true;
42+
};
43+
tests = {
44+
"unit-tests" = {
45+
depends = [
46+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
47+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
48+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
49+
(hsPkgs."jackpolynomials" or (errorHandler.buildDepError "jackpolynomials"))
50+
(hsPkgs."hspray" or (errorHandler.buildDepError "hspray"))
51+
(hsPkgs."hypergeomatrix" or (errorHandler.buildDepError "hypergeomatrix"))
52+
(hsPkgs."combinat" or (errorHandler.buildDepError "combinat"))
53+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
54+
(hsPkgs."numeric-prelude" or (errorHandler.buildDepError "numeric-prelude"))
55+
(hsPkgs."matrix" or (errorHandler.buildDepError "matrix"))
56+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
57+
];
58+
buildable = true;
59+
};
60+
};
61+
benchmarks = {
62+
"benchmarks" = {
63+
depends = [
64+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
65+
(hsPkgs."miniterion" or (errorHandler.buildDepError "miniterion"))
66+
(hsPkgs."jackpolynomials" or (errorHandler.buildDepError "jackpolynomials"))
67+
(hsPkgs."hspray" or (errorHandler.buildDepError "hspray"))
68+
];
69+
buildable = true;
70+
};
71+
};
72+
};
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 = "mpd-current-json"; version = "1.3.2.0"; };
15+
license = "Unlicense";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Lucas G";
19+
homepage = "https://codeberg.org/useless-utils/mpd-current-json";
20+
url = "";
21+
synopsis = "Print current MPD song and status as JSON";
22+
description = "Print currently playing MPD's song metadata and status as JSON";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."libmpd" or (errorHandler.buildDepError "libmpd"))
30+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
31+
];
32+
buildable = true;
33+
};
34+
exes = {
35+
"mpd-current-json" = {
36+
depends = [
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."libmpd" or (errorHandler.buildDepError "libmpd"))
39+
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
40+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
41+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
42+
(hsPkgs."aeson-pretty" or (errorHandler.buildDepError "aeson-pretty"))
43+
(hsPkgs."mpd-current-json" or (errorHandler.buildDepError "mpd-current-json"))
44+
];
45+
buildable = true;
46+
};
47+
};
48+
};
49+
}

0 commit comments

Comments
 (0)