lol

antic: init at 0.2.5

+43
+41
pkgs/development/libraries/antic/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , mpir 5 + , gmp 6 + , mpfr 7 + , flint 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "antic"; 12 + version = "0.2.5"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "flintlib"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "sha256-bQ2VvCS+lGro5qxs+qBz3RpUenxQTmTr+lm9BFZWYts="; 19 + }; 20 + 21 + buildInputs = [ mpir gmp mpfr flint ]; 22 + 23 + configureFlags = [ 24 + "--with-gmp=${gmp}" 25 + "--with-mpir=${mpir}" 26 + "--with-mpfr=${mpfr}" 27 + "--with-flint=${flint}" 28 + ]; 29 + 30 + enableParallelBuilding = true; 31 + 32 + doCheck = true; 33 + 34 + meta = with lib; { 35 + description = "An algebraic number theory library"; 36 + homepage = "https://github.com/flintlib/antic"; 37 + license = licenses.lgpl21Plus; 38 + maintainers = with maintainers; [ smasher164 ]; 39 + platforms = platforms.unix; 40 + }; 41 + }
+2
pkgs/top-level/all-packages.nix
··· 18553 18553 18554 18554 ansi2html = with python3.pkgs; toPythonApplication ansi2html; 18555 18555 18556 + antic = callPackage ../development/libraries/antic {}; 18557 + 18556 18558 anttweakbar = callPackage ../development/libraries/AntTweakBar { }; 18557 18559 18558 18560 appstream = callPackage ../development/libraries/appstream { };