Merge pull request #209644 from smasher164/antic

antic: init at 0.2.5
This commit is contained in:
Jonas Heinrich 2023-01-11 10:29:30 +01:00 committed by GitHub
commit 2cc918c113
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
, mpir
, gmp
, mpfr
, flint
}:
stdenv.mkDerivation rec {
pname = "antic";
version = "0.2.5";
src = fetchFromGitHub {
owner = "flintlib";
repo = pname;
rev = "v${version}";
sha256 = "sha256-bQ2VvCS+lGro5qxs+qBz3RpUenxQTmTr+lm9BFZWYts=";
};
buildInputs = [ mpir gmp mpfr flint ];
configureFlags = [
"--with-gmp=${gmp}"
"--with-mpir=${mpir}"
"--with-mpfr=${mpfr}"
"--with-flint=${flint}"
];
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
description = "An algebraic number theory library";
homepage = "https://github.com/flintlib/antic";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ smasher164 ];
platforms = platforms.unix;
};
}

View file

@ -18572,6 +18572,8 @@ with pkgs;
ansi2html = with python3.pkgs; toPythonApplication ansi2html;
antic = callPackage ../development/libraries/antic {};
anttweakbar = callPackage ../development/libraries/AntTweakBar { };
appstream = callPackage ../development/libraries/appstream { };