Skip to content

Commit 7601e2e

Browse files
author
IOHK
committed
Automatic Update
1 parent 12b6cb1 commit 7601e2e

File tree

29 files changed

+1365
-1
lines changed

29 files changed

+1365
-1
lines changed

default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5822,6 +5822,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
58225822
"fix-symbols-gitit" = import ./nix/fix-symbols-gitit.nix;
58235823
"fix-whitespace" = import ./nix/fix-whitespace.nix;
58245824
"fixed" = import ./nix/fixed.nix;
5825+
"fixed-generic" = import ./nix/fixed-generic.nix;
58255826
"fixed-length" = import ./nix/fixed-length.nix;
58265827
"fixed-list" = import ./nix/fixed-list.nix;
58275828
"fixed-point" = import ./nix/fixed-point.nix;
@@ -14667,6 +14668,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1466714668
"significant-figures" = import ./nix/significant-figures.nix;
1466814669
"signify-hs" = import ./nix/signify-hs.nix;
1466914670
"silently" = import ./nix/silently.nix;
14671+
"silero-vad" = import ./nix/silero-vad.nix;
1467014672
"silkscreen" = import ./nix/silkscreen.nix;
1467114673
"silvi" = import ./nix/silvi.nix;
1467214674
"simd" = import ./nix/simd.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+
package = {
13+
specVersion = "1.12";
14+
identifier = { name = "esqueleto"; version = "3.5.13.2"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2012-2016 Felipe Almeida Lessa";
17+
maintainer = "[email protected]";
18+
author = "Felipe Lessa";
19+
homepage = "https://github.com/bitemyapp/esqueleto";
20+
url = "";
21+
synopsis = "Type-safe EDSL for SQL queries on persistent backends.";
22+
description = "@esqueleto@ is a bare bones, type-safe EDSL for SQL queries that works with unmodified @persistent@ SQL backends. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked @esqueleto@ queries that fail at runtime.\n\n@persistent@ is a library for type-safe data serialization. It has many kinds of backends, such as SQL backends (@persistent-mysql@, @persistent-postgresql@, @persistent-sqlite@) and NoSQL backends (@persistent-mongoDB@). While @persistent@ is a nice library for storing and retrieving records, including with filters, it does not try to support some of the features that are specific to SQL backends. In particular, @esqueleto@ is the recommended library for type-safe @JOIN@s on @persistent@ SQL backends. (The alternative is using raw SQL, but that's error prone and does not offer any composability.)\n\nCurrently, @SELECT@s, @UPDATE@s, @INSERT@s and @DELETE@s are supported. Not all SQL features are available, but most of them can be easily added (especially functions), so please open an issue or send a pull request if you need anything that is not covered by @esqueleto@ on <https://github.com/bitemyapp/esqueleto>.\n\nThe name of this library means \\\"skeleton\\\" in Portuguese and contains all three SQL letters in the correct order =). It was inspired by Scala's Squeryl but created from scratch.";
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."attoparsec" or (errorHandler.buildDepError "attoparsec"))
31+
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
32+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
33+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
34+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
35+
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
36+
(hsPkgs."persistent" or (errorHandler.buildDepError "persistent"))
37+
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
38+
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
39+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
40+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
41+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
42+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
43+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
44+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
45+
];
46+
buildable = true;
47+
};
48+
tests = {
49+
"specs" = {
50+
depends = [
51+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
52+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
53+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
54+
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
55+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
56+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
57+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
58+
(hsPkgs."esqueleto" or (errorHandler.buildDepError "esqueleto"))
59+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
60+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
61+
(hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core"))
62+
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
63+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
64+
(hsPkgs."mysql" or (errorHandler.buildDepError "mysql"))
65+
(hsPkgs."mysql-simple" or (errorHandler.buildDepError "mysql-simple"))
66+
(hsPkgs."persistent" or (errorHandler.buildDepError "persistent"))
67+
(hsPkgs."persistent-mysql" or (errorHandler.buildDepError "persistent-mysql"))
68+
(hsPkgs."persistent-postgresql" or (errorHandler.buildDepError "persistent-postgresql"))
69+
(hsPkgs."persistent-sqlite" or (errorHandler.buildDepError "persistent-sqlite"))
70+
(hsPkgs."postgresql-simple" or (errorHandler.buildDepError "postgresql-simple"))
71+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
72+
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
73+
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
74+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
75+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
76+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
77+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
78+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
79+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
80+
];
81+
buildable = true;
82+
};
83+
};
84+
};
85+
}
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+
package = {
13+
specVersion = "1.12";
14+
identifier = { name = "esqueleto"; version = "3.5.14.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "(c) 2012-2016 Felipe Almeida Lessa";
17+
maintainer = "[email protected]";
18+
author = "Felipe Lessa";
19+
homepage = "https://github.com/bitemyapp/esqueleto";
20+
url = "";
21+
synopsis = "Type-safe EDSL for SQL queries on persistent backends.";
22+
description = "@esqueleto@ is a bare bones, type-safe EDSL for SQL queries that works with unmodified @persistent@ SQL backends. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked @esqueleto@ queries that fail at runtime.\n\n@persistent@ is a library for type-safe data serialization. It has many kinds of backends, such as SQL backends (@persistent-mysql@, @persistent-postgresql@, @persistent-sqlite@) and NoSQL backends (@persistent-mongoDB@). While @persistent@ is a nice library for storing and retrieving records, including with filters, it does not try to support some of the features that are specific to SQL backends. In particular, @esqueleto@ is the recommended library for type-safe @JOIN@s on @persistent@ SQL backends. (The alternative is using raw SQL, but that's error prone and does not offer any composability.)\n\nCurrently, @SELECT@s, @UPDATE@s, @INSERT@s and @DELETE@s are supported. Not all SQL features are available, but most of them can be easily added (especially functions), so please open an issue or send a pull request if you need anything that is not covered by @esqueleto@ on <https://github.com/bitemyapp/esqueleto>.\n\nThe name of this library means \\\"skeleton\\\" in Portuguese and contains all three SQL letters in the correct order =). It was inspired by Scala's Squeryl but created from scratch.";
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."attoparsec" or (errorHandler.buildDepError "attoparsec"))
31+
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
32+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
33+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
34+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
35+
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
36+
(hsPkgs."persistent" or (errorHandler.buildDepError "persistent"))
37+
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
38+
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
39+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
40+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
41+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
42+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
43+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
44+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
45+
];
46+
buildable = true;
47+
};
48+
tests = {
49+
"specs" = {
50+
depends = [
51+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
52+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
53+
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
54+
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
55+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
56+
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
57+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
58+
(hsPkgs."esqueleto" or (errorHandler.buildDepError "esqueleto"))
59+
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
60+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
61+
(hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core"))
62+
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
63+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
64+
(hsPkgs."mysql" or (errorHandler.buildDepError "mysql"))
65+
(hsPkgs."mysql-simple" or (errorHandler.buildDepError "mysql-simple"))
66+
(hsPkgs."persistent" or (errorHandler.buildDepError "persistent"))
67+
(hsPkgs."persistent-mysql" or (errorHandler.buildDepError "persistent-mysql"))
68+
(hsPkgs."persistent-postgresql" or (errorHandler.buildDepError "persistent-postgresql"))
69+
(hsPkgs."persistent-sqlite" or (errorHandler.buildDepError "persistent-sqlite"))
70+
(hsPkgs."postgresql-simple" or (errorHandler.buildDepError "postgresql-simple"))
71+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
72+
(hsPkgs."resourcet" or (errorHandler.buildDepError "resourcet"))
73+
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged"))
74+
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
75+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
76+
(hsPkgs."time" or (errorHandler.buildDepError "time"))
77+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
78+
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
79+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
80+
];
81+
buildable = true;
82+
};
83+
};
84+
};
85+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 = "fixed-generic"; version = "0.1.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "Copyright (c) 2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/fixed-generic#readme";
20+
url = "";
21+
synopsis = "Fixed-point number build on generic integral number";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/fixed-generic#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
30+
];
31+
buildable = true;
32+
};
33+
tests = {
34+
"fixed-generic-test" = {
35+
depends = [
36+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
37+
(hsPkgs."fixed-generic" or (errorHandler.buildDepError "fixed-generic"))
38+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
39+
];
40+
buildable = true;
41+
};
42+
};
43+
};
44+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 = "fixed-generic"; version = "0.1.0.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "Copyright (c) 2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/fixed-generic#readme";
20+
url = "";
21+
synopsis = "Fixed-point number build on generic integral number";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/fixed-generic#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
30+
];
31+
buildable = true;
32+
};
33+
tests = {
34+
"fixed-generic-test" = {
35+
depends = [
36+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
37+
(hsPkgs."fixed-generic" or (errorHandler.buildDepError "fixed-generic"))
38+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
39+
];
40+
buildable = true;
41+
};
42+
};
43+
};
44+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 = "fixed-generic"; version = "0.1.0.2"; };
15+
license = "BSD-3-Clause";
16+
copyright = "Copyright (c) 2023 Yoshikuni Jujo";
17+
maintainer = "[email protected]";
18+
author = "Yoshikuni Jujo";
19+
homepage = "https://github.com/YoshikuniJujo/fixed-generic#readme";
20+
url = "";
21+
synopsis = "Fixed-point number build on generic integral number";
22+
description = "Please see the README on GitHub at <https://github.com/YoshikuniJujo/fixed-generic#readme>";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
30+
];
31+
buildable = true;
32+
};
33+
tests = {
34+
"fixed-generic-test" = {
35+
depends = [
36+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
37+
(hsPkgs."fixed-generic" or (errorHandler.buildDepError "fixed-generic"))
38+
(hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal"))
39+
];
40+
buildable = true;
41+
};
42+
};
43+
};
44+
}

0 commit comments

Comments
 (0)