Merge pull request #107785 from Taneb/metamath-194

metamath: 0.193 -> 0.194
This commit is contained in:
Guillaume Girol 2021-01-23 14:37:41 +00:00 committed by GitHub
commit f168a3dd78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,18 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation {
let
version = "0.194";
in stdenv.mkDerivation {
pname = "metamath";
version = "0.193";
inherit version;
buildInputs = [ autoreconfHook ];
src = fetchFromGitHub {
owner = "metamath";
repo = "metamath-exe";
rev = "f973c81222ebe36580a24f0fa7bbb600990af7d6";
sha256 = "1s9hyknfvhj86g3giayyf3dxzg23iij0rs7bdvj075v9qbyhqn9b";
rev = "v${version}";
sha256 = "1bc5h2jdqbgna8zbhqyphlqcldz4vddg72r2rnjjjzxnxb2skvj7";
};
meta = with lib; {
@ -23,7 +25,7 @@ stdenv.mkDerivation {
'';
homepage = "http://us.metamath.org";
downloadPage = "http://us.metamath.org/#downloads";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = [ maintainers.taneb ];
platforms = platforms.all;
};