Merge branch 'master' into staging-next

This commit is contained in:
Martin Weinelt
2021-03-09 17:05:41 +01:00
committed by GitHub
31 changed files with 141 additions and 119 deletions
@@ -1,12 +1,10 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
let
version = "0.196";
in stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "metamath";
inherit version;
version = "0.196";
buildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ];
src = fetchFromGitHub {
owner = "metamath";
@@ -25,7 +23,7 @@ in stdenv.mkDerivation {
'';
homepage = "http://us.metamath.org";
downloadPage = "http://us.metamath.org/#downloads";
license = licenses.gpl2Only;
license = licenses.gpl2Plus;
maintainers = [ maintainers.taneb ];
platforms = platforms.all;
};
@@ -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 ];
};
}