mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
commit
27a7096d1d
29
pkgs/development/interpreters/sollya/default.nix
Normal file
29
pkgs/development/interpreters/sollya/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -27431,6 +27431,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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user