Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 17, 2023
1 parent dd5ff9b commit f7e2c8d
Show file tree
Hide file tree
Showing 37 changed files with 2,239 additions and 3 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"FirstPrelude" = import ./nix/_First_Prelude.nix;
"FixedPoint-simple" = import ./nix/_Fixed_Point-simple.nix;
"Flint2" = import ./nix/_Flint2.nix;
"Flint2-Examples" = import ./nix/_Flint2-_Examples.nix;
"Flippi" = import ./nix/_Flippi.nix;
"FloatingHex" = import ./nix/_Floating_Hex.nix;
"Focus" = import ./nix/_Focus.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.2"; };
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 = "A Haskell Wrapper for Flint\nThis library provides access to the functionality of the FLINT.\nSo what is it?\nFLINT is a C library for doing number theory, freely available under the GNU LGPL at [https://flintlib.org](https://flintlib.org)\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.\nAt the research frontier\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;
};
};
};
}
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.3"; };
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 = "A Haskell Wrapper for Flint\nThis library provides access to the functionality of the FLINT.\nSo what is it?\nFLINT is a C library for doing number theory, freely available under the GNU LGPL at [https://flintlib.org](https://flintlib.org)\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.\nAt the research frontier\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;
};
};
};
}
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.4"; };
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;
};
};
};
}
Loading

0 comments on commit f7e2c8d

Please sign in to comment.