1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 nativeBuildInputs = [ autoreconfHook ];
9 src = fetchFromGitHub {
11 repo = "metamath-exe";
13 sha256 = "sha256-Cg1dgz+uphDlGhKH3mTywtAccWinC5+pwNv4TB3YAnI=";
17 description = "Interpreter for the metamath proof language";
18 mainProgram = "metamath";
20 The metamath program is an ASCII-based ANSI C program with a command-line
21 interface. It was used (along with mmj2) to build and verify the proofs
22 in the Metamath Proof Explorer, and it generated its web pages. The *.mm
23 ASCII databases (set.mm and others) are also included in this derivation.
25 homepage = "https://us.metamath.org";
26 downloadPage = "https://us.metamath.org/#downloads";
27 license = licenses.gpl2Plus;
28 maintainers = [ maintainers.taneb ];
29 platforms = platforms.all;