12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
17 owner = "fredrik-johansson";
20 sha256 = "sha256-Ony2FGMnWyNqD7adGeiDtysHNZ4ClMvQ1ijVPSHJmyc=";
23 buildInputs = [ mpir gmp mpfr flint arb antic ];
29 "--with-flint=${flint}"
31 "--with-antic=${antic}"
34 enableParallelBuilding = true;
37 description = "C library for exact computation with real and complex numbers";
38 homepage = "https://fredrikj.net/calcium/";
39 license = licenses.lgpl21Plus;
40 maintainers = with maintainers; [ smasher164 ];
41 platforms = platforms.unix;