Skip to content

Commit 9ee6d67

Browse files
author
IOHK
committed
Automatic Update
1 parent cd2b3f2 commit 9ee6d67

File tree

32 files changed

+1510
-2
lines changed

32 files changed

+1510
-2
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 = "HSvm"; version = "1.0.3.32"; };
15+
license = "BSD-2-Clause";
16+
copyright = "(c) 2009 Paolo Losi, 2017 Pavel Ryzhov";
17+
maintainer = "Pavel Ryzhov <[email protected]>";
18+
author = "Paolo Losi <[email protected]>";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Haskell Bindings for libsvm";
22+
description = "The library embeds libsvm and provides a type-safe interface into SVM models.";
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+
];
31+
libs = [ (pkgs."stdc++" or (errorHandler.sysDepError "stdc++")) ];
32+
buildable = true;
33+
};
34+
};
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 = "HSvm"; version = "1.0.3.35"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2009 Paolo Losi, 2017 Pavel Ryzhov";
17+
maintainer = "Pavel Ryzhov <[email protected]>";
18+
author = "Paolo Losi <[email protected]>";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Haskell Bindings for libsvm";
22+
description = "The library embeds libsvm and provides a type-safe interface into SVM models.";
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+
];
31+
libs = [ (pkgs."stdc++" or (errorHandler.sysDepError "stdc++")) ];
32+
buildable = true;
33+
};
34+
};
35+
}

hackage/brick-2.6-r1-9aa82d95fe19280c4dfcdc2491b0926860ccbd25005b20fa36472eb2b8e37adb.nix

Lines changed: 413 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 67 additions & 0 deletions
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 = {};
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "commonmark-extensions"; version = "0.2.5.6"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2018-2021 John MacFarlane";
17+
maintainer = "[email protected]";
18+
author = "John MacFarlane";
19+
homepage = "https://github.com/jgm/commonmark-hs";
20+
url = "";
21+
synopsis = "Pure Haskell commonmark parser.";
22+
description = "This library provides some useful extensions to core commonmark\nsyntax: smart quotes, definition lists, tables, footnotes, math,\nand more.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
30+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
31+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
32+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
33+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
34+
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
35+
(hsPkgs."commonmark" or (errorHandler.buildDepError "commonmark"))
36+
(hsPkgs."emojis" or (errorHandler.buildDepError "emojis"))
37+
];
38+
buildable = true;
39+
};
40+
tests = {
41+
"test-commonmark-extensions" = {
42+
depends = [
43+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
44+
(hsPkgs."commonmark" or (errorHandler.buildDepError "commonmark"))
45+
(hsPkgs."commonmark-extensions" or (errorHandler.buildDepError "commonmark-extensions"))
46+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
47+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
48+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
49+
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
50+
];
51+
buildable = true;
52+
};
53+
};
54+
benchmarks = {
55+
"benchmark-commonmark-extensions" = {
56+
depends = [
57+
(hsPkgs."commonmark" or (errorHandler.buildDepError "commonmark"))
58+
(hsPkgs."commonmark-extensions" or (errorHandler.buildDepError "commonmark-extensions"))
59+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
60+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
61+
(hsPkgs."tasty-bench" or (errorHandler.buildDepError "tasty-bench"))
62+
];
63+
buildable = true;
64+
};
65+
};
66+
};
67+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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 = "commonmark-pandoc"; version = "0.2.2.3"; };
15+
license = "BSD-3-Clause";
16+
copyright = "2018-2021 John MacFarlane";
17+
maintainer = "[email protected]";
18+
author = "John MacFarlane";
19+
homepage = "https://github.com/jgm/commonmark-hs";
20+
url = "";
21+
synopsis = "Bridge between commonmark and pandoc AST.";
22+
description = "This library provides typeclasses for rendering\ncommonmark to Pandoc types.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."commonmark" or (errorHandler.buildDepError "commonmark"))
30+
(hsPkgs."commonmark-extensions" or (errorHandler.buildDepError "commonmark-extensions"))
31+
(hsPkgs."pandoc-types" or (errorHandler.buildDepError "pandoc-types"))
32+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
33+
];
34+
buildable = true;
35+
};
36+
};
37+
}
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 = { systemencoding = true; };
12+
package = {
13+
specVersion = "2.0";
14+
identifier = { name = "encoding"; version = "0.8.10"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Henning Günther";
19+
homepage = "http://code.haskell.org/encoding/";
20+
url = "";
21+
synopsis = "A library for various character encodings";
22+
description = "Haskell has excellect handling of unicode, the Char type covers all unicode chars. Unfortunately, there's no possibility to read or write something to the outer world in an encoding other than ascii due to the lack of support for encodings. This library should help with that.";
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.containers or (pkgs.pkgsBuildBuild.containers or (errorHandler.setupDepError "containers")))
28+
(hsPkgs.pkgsBuildBuild.filepath or (pkgs.pkgsBuildBuild.filepath or (errorHandler.setupDepError "filepath")))
29+
(hsPkgs.pkgsBuildBuild.ghc-prim or (pkgs.pkgsBuildBuild.ghc-prim or (errorHandler.setupDepError "ghc-prim")))
30+
(hsPkgs.pkgsBuildBuild.HaXml or (pkgs.pkgsBuildBuild.HaXml or (errorHandler.setupDepError "HaXml")))
31+
];
32+
};
33+
components = {
34+
"library" = {
35+
depends = [
36+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
37+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
38+
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
39+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
40+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
41+
(hsPkgs."extensible-exceptions" or (errorHandler.buildDepError "extensible-exceptions"))
42+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
43+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
44+
(hsPkgs."regex-compat" or (errorHandler.buildDepError "regex-compat"))
45+
];
46+
buildable = true;
47+
};
48+
tests = {
49+
"encoding-test" = {
50+
depends = [
51+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
52+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
53+
(hsPkgs."encoding" or (errorHandler.buildDepError "encoding"))
54+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
55+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
56+
];
57+
buildable = true;
58+
};
59+
};
60+
};
61+
}
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { enable-inspect = false; };
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "generic-data"; version = "1.1.0.2"; };
15+
license = "MIT";
16+
copyright = "2018-2020 Li-yao Xia";
17+
maintainer = "[email protected]";
18+
author = "Li-yao Xia";
19+
homepage = "https://github.com/Lysxia/generic-data#readme";
20+
url = "";
21+
synopsis = "Deriving instances with GHC.Generics and related utilities";
22+
description = "Generic implementations of standard type classes.\nOperations on generic representations to help using \"GHC.Generics\".\nSee README.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."ap-normalize" or (errorHandler.buildDepError "ap-normalize"))
29+
(hsPkgs."base-orphans" or (errorHandler.buildDepError "base-orphans"))
30+
(hsPkgs."ghc-boot-th" or (errorHandler.buildDepError "ghc-boot-th"))
31+
(hsPkgs."show-combinators" or (errorHandler.buildDepError "show-combinators"))
32+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
33+
] ++ pkgs.lib.optional (compiler.isGhc && compiler.version.lt "9.6") (hsPkgs."contravariant" or (errorHandler.buildDepError "contravariant"));
34+
buildable = true;
35+
};
36+
tests = {
37+
"unit-test" = {
38+
depends = [
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
41+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
42+
(hsPkgs."show-combinators" or (errorHandler.buildDepError "show-combinators"))
43+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
44+
];
45+
buildable = true;
46+
};
47+
"record-test" = {
48+
depends = [
49+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
50+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
51+
];
52+
buildable = true;
53+
};
54+
"example-test" = {
55+
depends = [
56+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
57+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
58+
];
59+
buildable = true;
60+
};
61+
"microsurgery-test" = {
62+
depends = [
63+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
64+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
65+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
66+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
67+
];
68+
buildable = true;
69+
};
70+
"lens-surgery-test" = {
71+
depends = [
72+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
73+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
74+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
75+
(hsPkgs."generic-lens" or (errorHandler.buildDepError "generic-lens"))
76+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
77+
];
78+
buildable = true;
79+
};
80+
"one-liner-surgery-test" = {
81+
depends = [
82+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
83+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
84+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
85+
(hsPkgs."generic-lens" or (errorHandler.buildDepError "generic-lens"))
86+
(hsPkgs."one-liner" or (errorHandler.buildDepError "one-liner"))
87+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
88+
];
89+
buildable = true;
90+
};
91+
"inspect" = {
92+
depends = pkgs.lib.optionals (!!flags.enable-inspect) [
93+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
94+
(hsPkgs."inspection-testing" or (errorHandler.buildDepError "inspection-testing"))
95+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
96+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
97+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
98+
];
99+
buildable = if !flags.enable-inspect then false else true;
100+
};
101+
};
102+
benchmarks = {
103+
"bench" = {
104+
depends = [
105+
(hsPkgs."tasty-bench" or (errorHandler.buildDepError "tasty-bench"))
106+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
107+
(hsPkgs."generic-data" or (errorHandler.buildDepError "generic-data"))
108+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
109+
];
110+
buildable = if !(compiler.isGhc && compiler.version.ge "8.6")
111+
then false
112+
else true;
113+
};
114+
};
115+
};
116+
}

0 commit comments

Comments
 (0)