nixpkgs/pkgs/development/interpreters/sollya/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
648 B
Nix
Raw Normal View History

2021-03-09 12:11:52 +00:00
{ lib
, stdenv
, fetchurl
, gmp
, mpfr
, mpfi
, libxml2
, fplll
}:
stdenv.mkDerivation rec {
pname = "sollya";
2022-04-03 19:03:03 +00:00
version = "8.0";
2021-03-09 12:11:52 +00:00
src = fetchurl {
url = "https://www.sollya.org/releases/sollya-${version}/sollya-${version}.tar.gz";
2022-04-03 19:03:03 +00:00
sha256 = "sha256-WNc0+aL8jmczwR+W0t+aslvvJNccQBIw4p8KEzmoEZI=";
2021-03-09 12:11:52 +00:00
};
buildInputs = [ gmp mpfr mpfi libxml2 fplll ];
doCheck = true;
2021-03-09 12:11:52 +00:00
meta = with lib; {
description = "A tool environment for safe floating-point code development";
homepage = "https://www.sollya.org/";
license = licenses.cecill-c;
platforms = platforms.unix;
maintainers = with maintainers; [ wegank ];
2021-03-09 12:11:52 +00:00
};
}