sollya: init at 0.7

This commit is contained in:
Eduardo Sánchez Muñoz 2021-03-09 13:11:52 +01:00
parent d075aab0ed
commit c5462fa788
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ 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 ];
};
}

View file

@ -27433,6 +27433,8 @@ in
soldat-unstable = callPackage ../games/soldat-unstable { };
sollya = callPackage ../development/interpreters/sollya { };
# You still can override by passing more arguments.
space-orbit = callPackage ../games/space-orbit { };