calcium: init at 0.4.1

This commit is contained in:
Akhil Indurti 2023-01-11 18:42:20 -08:00
parent c9c4aea7ab
commit fc63c84bbf
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, mpir
, gmp
, mpfr
, flint
, arb
, antic
}:
stdenv.mkDerivation rec {
pname = "calcium";
version = "0.4.1";
src = fetchFromGitHub {
owner = "fredrik-johansson";
repo = pname;
rev = version;
sha256 = "sha256-Ony2FGMnWyNqD7adGeiDtysHNZ4ClMvQ1ijVPSHJmyc=";
};
buildInputs = [ mpir gmp mpfr flint arb antic ];
configureFlags = [
"--with-gmp=${gmp}"
"--with-mpir=${mpir}"
"--with-mpfr=${mpfr}"
"--with-flint=${flint}"
"--with-arb=${arb}"
"--with-antic=${antic}"
];
enableParallelBuilding = true;
meta = with lib; {
description = "A C library for exact computation with real and complex numbers";
homepage = "https://fredrikj.net/calcium/";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ smasher164 ];
platforms = platforms.unix;
};
}

View file

@ -18794,6 +18794,8 @@ with pkgs;
};
});
calcium = callPackage ../development/libraries/calcium {};
cubeb = callPackage ../development/libraries/audio/cubeb {
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio CoreServices;
};