Skip to content

Commit 0afc55d

Browse files
author
IOHK
committed
Automatic Update
1 parent c4c57c2 commit 0afc55d

File tree

50 files changed

+1842
-4
lines changed

Some content is hidden

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

50 files changed

+1842
-4
lines changed

default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9199,6 +9199,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
91999199
"instrument-chord" = import ./nix/instrument-chord.nix;
92009200
"instrument-cloudwatch" = import ./nix/instrument-cloudwatch.nix;
92019201
"int-cast" = import ./nix/int-cast.nix;
9202+
"int-conv" = import ./nix/int-conv.nix;
92029203
"int-interval-map" = import ./nix/int-interval-map.nix;
92039204
"int-like" = import ./nix/int-like.nix;
92049205
"int-multimap" = import ./nix/int-multimap.nix;
@@ -9430,6 +9431,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
94309431
"javasf" = import ./nix/javasf.nix;
94319432
"javav" = import ./nix/javav.nix;
94329433
"javelin" = import ./nix/javelin.nix;
9434+
"javelin-frames" = import ./nix/javelin-frames.nix;
94339435
"javelin-io" = import ./nix/javelin-io.nix;
94349436
"jbi" = import ./nix/jbi.nix;
94359437
"jcdecaux-vls" = import ./nix/jcdecaux-vls.nix;
@@ -10267,6 +10269,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1026710269
"live-sequencer" = import ./nix/live-sequencer.nix;
1026810270
"liveplot" = import ./nix/liveplot.nix;
1026910271
"ll-picosat" = import ./nix/ll-picosat.nix;
10272+
"llama-cpp-haskell" = import ./nix/llama-cpp-haskell.nix;
1027010273
"llrbtree" = import ./nix/llrbtree.nix;
1027110274
"llsd" = import ./nix/llsd.nix;
1027210275
"llvm" = import ./nix/llvm.nix;
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {
12+
testcbc = false;
13+
testcplex = false;
14+
testglpsol = false;
15+
testgurobicl = false;
16+
testhighs = false;
17+
testlpsolve = false;
18+
testprintemps = false;
19+
testscip = false;
20+
withzlib = true;
21+
};
22+
package = {
23+
specVersion = "1.18";
24+
identifier = { name = "MIP"; version = "0.2.0.0"; };
25+
license = "BSD-3-Clause";
26+
copyright = "2020 Masahiro Sakai";
27+
maintainer = "[email protected]";
28+
author = "Masahiro Sakai";
29+
homepage = "https://github.com/msakai/haskell-MIP#readme";
30+
url = "";
31+
synopsis = "Library for using Mixed Integer Programming (MIP)";
32+
description = "Please see the README on GitHub at <https://github.com/msakai/haskell-MIP/tree/master/MIP#readme>";
33+
buildType = "Simple";
34+
};
35+
components = {
36+
"library" = {
37+
depends = [
38+
(hsPkgs."OptDir" or (errorHandler.buildDepError "OptDir"))
39+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
42+
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
43+
(hsPkgs."extended-reals" or (errorHandler.buildDepError "extended-reals"))
44+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
45+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
46+
(hsPkgs."intern" or (errorHandler.buildDepError "intern"))
47+
(hsPkgs."lattices" or (errorHandler.buildDepError "lattices"))
48+
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
49+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
50+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
51+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
52+
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
53+
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
54+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
55+
(hsPkgs."xml-conduit" or (errorHandler.buildDepError "xml-conduit"))
56+
] ++ pkgs.lib.optionals (flags.withzlib) [
57+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
58+
(hsPkgs."bytestring-encoding" or (errorHandler.buildDepError "bytestring-encoding"))
59+
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
60+
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib"))
61+
];
62+
buildable = true;
63+
};
64+
tests = {
65+
"MIP-test" = {
66+
depends = [
67+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
68+
(hsPkgs."MIP" or (errorHandler.buildDepError "MIP"))
69+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
70+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
71+
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
72+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
73+
(hsPkgs."lattices" or (errorHandler.buildDepError "lattices"))
74+
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
75+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
76+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
77+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
78+
(hsPkgs."tasty-th" or (errorHandler.buildDepError "tasty-th"))
79+
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
80+
];
81+
buildable = true;
82+
};
83+
};
84+
};
85+
}
Lines changed: 64 additions & 0 deletions
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 = "1.12";
14+
identifier = { name = "MIP-glpk"; version = "0.2.0.0"; };
15+
license = "GPL-3.0-only";
16+
copyright = "2020 Masahiro Sakai";
17+
maintainer = "[email protected]";
18+
author = "Masahiro Sakai";
19+
homepage = "https://github.com/msakai/haskell-MIP#readme";
20+
url = "";
21+
synopsis = "A GLPK backend to the MIP library.";
22+
description = "Please see the README on GitHub at <https://github.com/msakai/haskell-MIP/tree/master/MIP-glpk#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."MIP" or (errorHandler.buildDepError "MIP"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."bytestring-encoding" or (errorHandler.buildDepError "bytestring-encoding"))
32+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
33+
(hsPkgs."extended-reals" or (errorHandler.buildDepError "extended-reals"))
34+
(hsPkgs."glpk-headers" or (errorHandler.buildDepError "glpk-headers"))
35+
(hsPkgs."intern" or (errorHandler.buildDepError "intern"))
36+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
];
39+
libs = [ (pkgs."glpk" or (errorHandler.sysDepError "glpk")) ];
40+
buildable = true;
41+
};
42+
tests = {
43+
"MIP-glpk-test" = {
44+
depends = [
45+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
46+
(hsPkgs."MIP" or (errorHandler.buildDepError "MIP"))
47+
(hsPkgs."MIP-glpk" or (errorHandler.buildDepError "MIP-glpk"))
48+
(hsPkgs."async" or (errorHandler.buildDepError "async"))
49+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
50+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
51+
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class"))
52+
(hsPkgs."extended-reals" or (errorHandler.buildDepError "extended-reals"))
53+
(hsPkgs."glpk-headers" or (errorHandler.buildDepError "glpk-headers"))
54+
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
55+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
56+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
57+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
58+
(hsPkgs."tasty-th" or (errorHandler.buildDepError "tasty-th"))
59+
];
60+
buildable = true;
61+
};
62+
};
63+
};
64+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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 = "deferred-folds"; version = "0.9.18.7"; };
15+
license = "MIT";
16+
copyright = "(c) 2018, Metrix.AI";
17+
maintainer = "Nikita Volkov <[email protected]>";
18+
author = "Nikita Volkov <[email protected]>";
19+
homepage = "https://github.com/nikita-volkov/deferred-folds";
20+
url = "";
21+
synopsis = "Abstractions over deferred folds";
22+
description = "This library is in an experimental state.\nUsers should be prepared for frequent updates.";
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."foldl" or (errorHandler.buildDepError "foldl"))
32+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
33+
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
34+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
35+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
36+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
37+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
38+
];
39+
buildable = true;
40+
};
41+
tests = {
42+
"test" = {
43+
depends = [
44+
(hsPkgs."deferred-folds" or (errorHandler.buildDepError "deferred-folds"))
45+
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
46+
(hsPkgs."rerebase" or (errorHandler.buildDepError "rerebase"))
47+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
48+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
49+
];
50+
buildable = true;
51+
};
52+
};
53+
};
54+
}
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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 = "github-release"; version = "2.0.0.12"; };
15+
license = "MIT";
16+
copyright = "";
17+
maintainer = "Taylor Fausak";
18+
author = "";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Upload files to GitHub releases.";
22+
description = "GitHub Release uploads files to GitHub releases.";
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+
(hsPkgs."burrito" or (errorHandler.buildDepError "burrito"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."http-client" or (errorHandler.buildDepError "http-client"))
33+
(hsPkgs."http-client-tls" or (errorHandler.buildDepError "http-client-tls"))
34+
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
35+
(hsPkgs."mime-types" or (errorHandler.buildDepError "mime-types"))
36+
(hsPkgs."optparse-generic" or (errorHandler.buildDepError "optparse-generic"))
37+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
38+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
39+
];
40+
buildable = true;
41+
};
42+
exes = {
43+
"github-release" = {
44+
depends = [
45+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
46+
(hsPkgs."github-release" or (errorHandler.buildDepError "github-release"))
47+
];
48+
buildable = true;
49+
};
50+
};
51+
};
52+
}

0 commit comments

Comments
 (0)