python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / interpreters / sollya / default.nix
blob78b45daf178d4c562d9d1c5e2cb249e0b40f6437
1 { lib
2 , stdenv
3 , fetchurl
4 , gmp
5 , mpfr
6 , mpfi
7 , libxml2
8 , fplll
9 }:
11 stdenv.mkDerivation rec {
12   pname = "sollya";
13   version = "8.0";
15   src = fetchurl {
16     url = "https://www.sollya.org/releases/sollya-${version}/sollya-${version}.tar.gz";
17     sha256 = "sha256-WNc0+aL8jmczwR+W0t+aslvvJNccQBIw4p8KEzmoEZI=";
18   };
20   buildInputs = [ gmp mpfr mpfi libxml2 fplll ];
22   doCheck = true;
24   meta = with lib; {
25     description = "A tool environment for safe floating-point code development";
26     homepage = "https://www.sollya.org/";
27     license = licenses.cecill-c;
28     platforms = platforms.unix;
29     maintainers = with maintainers; [ wegank ];
30   };