mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
43 lines
865 B
Nix
43 lines
865 B
Nix
{ 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 = "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;
|
|
};
|
|
}
|