Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 18, 2023
1 parent f7e2c8d commit 5926877
Show file tree
Hide file tree
Showing 65 changed files with 2,531 additions and 7 deletions.
2 changes: 2 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11152,6 +11152,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"network-conduit" = import ./nix/network-conduit.nix;
"network-conduit-tls" = import ./nix/network-conduit-tls.nix;
"network-connection" = import ./nix/network-connection.nix;
"network-control" = import ./nix/network-control.nix;
"network-data" = import ./nix/network-data.nix;
"network-dbus" = import ./nix/network-dbus.nix;
"network-dns" = import ./nix/network-dns.nix;
Expand Down Expand Up @@ -11741,6 +11742,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"pandoc-plantuml-diagrams" = import ./nix/pandoc-plantuml-diagrams.nix;
"pandoc-plot" = import ./nix/pandoc-plot.nix;
"pandoc-pyplot" = import ./nix/pandoc-pyplot.nix;
"pandoc-query" = import ./nix/pandoc-query.nix;
"pandoc-select-code" = import ./nix/pandoc-select-code.nix;
"pandoc-server" = import ./nix/pandoc-server.nix;
"pandoc-sidenote" = import ./nix/pandoc-sidenote.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.18";
identifier = { name = "Flint2"; version = "0.1.0.5"; };
license = "GPL-2.0-only";
copyright = "Copyright (c) 2023 Hartmut Monien";
maintainer = "[email protected]";
author = "Hartmut Monien";
homepage = "https://github.com/monien/Flint2#readme";
url = "";
synopsis = "Haskell bindings for the flint library for number theory";
description = "This library provides access to the functionality of the FLINT.\nFLINT is a C library for doing number theory, freely available under the GNU LGPL.\nAt its core, FLINT provides arithmetic in standard rings such as the integers, rationals, algebraic, real, complex and p-adic numbers, finite fields, and number fields. It also provides polynomials (univariate and multivariate), power series, and matrices.\nFLINT has been used for many large scale research computations (e.g. A Trillion Triangles) and has been cited in hundreds of publications. FLINT's authors themselves have published more than 20 papers describing new algorithms first implemented within or on top of FLINT.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."groups" or (errorHandler.buildDepError "groups"))
];
libs = [ (pkgs."flint" or (errorHandler.sysDepError "flint")) ];
pkgconfig = [
(pkgconfPkgs."flint" or (errorHandler.pkgConfDepError "flint"))
(pkgconfPkgs."gmp" or (errorHandler.pkgConfDepError "gmp"))
];
build-tools = [
(hsPkgs.buildPackages.hsc2hs.components.exes.hsc2hs or (pkgs.buildPackages.hsc2hs or (errorHandler.buildToolDepError "hsc2hs:hsc2hs")))
];
buildable = true;
};
tests = {
"Flint2-test" = {
depends = [
(hsPkgs."Flint2" or (errorHandler.buildDepError "Flint2"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
];
buildable = true;
};
};
};
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { dev = false; };
package = {
specVersion = "2.0";
identifier = { name = "cassava-megaparsec"; version = "2.1.0"; };
license = "MIT";
copyright = "";
maintainer = "Mark Karpov <[email protected]>";
author = "Mark Karpov <[email protected]>";
homepage = "https://github.com/stackbuilders/cassava-megaparsec";
url = "";
synopsis = "Megaparsec parser of CSV files that plays nicely with Cassava";
description = "Megaparsec parser of CSV files that plays nicely with Cassava.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."cassava" or (errorHandler.buildDepError "cassava"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
tests = {
"tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."cassava" or (errorHandler.buildDepError "cassava"))
(hsPkgs."cassava-megaparsec" or (errorHandler.buildDepError "cassava-megaparsec"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."hspec-megaparsec" or (errorHandler.buildDepError "hspec-megaparsec"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.2";
identifier = { name = "data-clist"; version = "0.2"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Jeremy Huffman <[email protected]>, John Van Enk <[email protected]>";
author = "John Van Enk <[email protected]>";
homepage = "https://github.com/sw17ch/data-clist";
url = "";
synopsis = "Simple functional ring type.";
description = "Simple functional bidirectional ring type.\nGiven that the ring terminiology clashes with certain\nmathematical branches, we're using the term CList or\nCircularList instead.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
];
buildable = true;
};
tests = {
"tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-clist" or (errorHandler.buildDepError "data-clist"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { debug = false; };
package = {
specVersion = "1.10";
identifier = { name = "enummapset"; version = "0.7.2.0"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Mikolaj Konarski <[email protected]>";
author = "Michal Terepeta and others";
homepage = "https://github.com/Mikolaj/enummapset";
url = "";
synopsis = "IntMap and IntSet with Enum keys/elements.";
description = "This package contains simple wrappers around 'Data.IntMap' and\n'Data.IntSet' with 'Enum' keys and elements respectively.\nEspecially useful for 'Int's wrapped with `newtype`.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "8.0") (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"));
buildable = true;
};
tests = {
"intset-properties" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."test-framework" or (errorHandler.buildDepError "test-framework"))
(hsPkgs."test-framework-hunit" or (errorHandler.buildDepError "test-framework-hunit"))
(hsPkgs."test-framework-quickcheck2" or (errorHandler.buildDepError "test-framework-quickcheck2"))
] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "8.0") (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"));
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "flock"; version = "0.3.2.1"; };
license = "LicenseRef-OtherLicense";
copyright = "Ian Lynagh, 2007";
maintainer = "Erik Hesselink <[email protected]>";
author = "Ian Lynagh";
homepage = "http://github.com/hesselink/flock";
url = "";
synopsis = "Wrapper for flock(2)";
description = "Simple wrapper around flock(2).";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."lifted-base" or (errorHandler.buildDepError "lifted-base"))
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "generics-sop-lens"; version = "0.2.0.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "Oleg Grenrus <[email protected]>";
author = "Oleg Grenrus <[email protected]>";
homepage = "https://github.com/phadej/generics-sop-lens#readme";
url = "";
synopsis = "Lenses for types in generics-sop";
description = "Lenses for types in generics-sop package";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."generics-sop" or (errorHandler.buildDepError "generics-sop"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "gopro-plus"; version = "0.6.6.6"; };
license = "BSD-3-Clause";
copyright = "MIT";
maintainer = "[email protected]";
author = "Dustin Sallings";
homepage = "https://github.com/dustin/gopro-plus#readme";
url = "";
synopsis = "GoPro Plus Client API.";
description = "Please see the README on GitHub at <https://github.com/dustin/gopro-plus#readme>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."generic-deriving" or (errorHandler.buildDepError "generic-deriving"))
(hsPkgs."generic-random" or (errorHandler.buildDepError "generic-random"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."retry" or (errorHandler.buildDepError "retry"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."wreq" or (errorHandler.buildDepError "wreq"))
];
buildable = true;
};
tests = {
"gopro-plus-test" = {
depends = [
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."generic-deriving" or (errorHandler.buildDepError "generic-deriving"))
(hsPkgs."generic-random" or (errorHandler.buildDepError "generic-random"))
(hsPkgs."gopro-plus" or (errorHandler.buildDepError "gopro-plus"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."raw-strings-qq" or (errorHandler.buildDepError "raw-strings-qq"))
(hsPkgs."retry" or (errorHandler.buildDepError "retry"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-discover" or (errorHandler.buildDepError "tasty-discover"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."wreq" or (errorHandler.buildDepError "wreq"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 5926877

Please sign in to comment.