depot/third_party/nixpkgs/pkgs/development/interpreters/sollya/default.nix
Default email 07b8fe0546 Project import generated by Copybara.
GitOrigin-RevId: 916ee862e87ac5ee2439f2fb7856386b4dc906ae
2021-03-12 08:09:13 +01:00

29 lines
634 B
Nix

{ lib
, stdenv
, fetchurl
, gmp
, mpfr
, mpfi
, libxml2
, fplll
}:
stdenv.mkDerivation rec {
pname = "sollya";
version = "7.0";
src = fetchurl {
url = "https://www.sollya.org/releases/sollya-${version}/sollya-${version}.tar.gz";
sha256 = "0amrxg7567yy5xqpgchxggjpfr11xyl27vy29c7vlh7v8a17nj1h";
};
buildInputs = [ gmp mpfr mpfi libxml2 fplll ];
meta = with lib; {
description = "A tool environment for safe floating-point code development";
homepage = "https://www.sollya.org/";
license = licenses.cecill-c;
platforms = platforms.linux;
maintainers = with maintainers; [ eduardosm ];
};
}