coq2html: 20170720 -> 1.2

This commit is contained in:
Ben Siraphob 2021-04-30 13:49:09 +07:00 committed by Vincent Laporte
parent 1d75f482ed
commit 418a37d99c

View File

@ -1,20 +1,17 @@
{ lib, stdenv, fetchgit, ocaml }: { lib, stdenv, fetchFromGitHub, ocaml }:
let stdenv.mkDerivation rec {
version = "20170720";
in
stdenv.mkDerivation {
pname = "coq2html"; pname = "coq2html";
inherit version; version = "1.2";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/xavierleroy/coq2html"; owner = "xavierleroy";
rev = "e2b94093c6b9a877717f181765e30577de22439e"; repo = "coq2html";
sha256 = "1x466j0pyjggyz0870pdllv9f5vpnfrgkd0w7ajvm9rkwyp3f610"; rev = "v${version}";
sha256 = "sha256-ty/6A3wivjDCrmlZAcZyaIwQQ+vPBJm9MhtW6nZcV3s=";
}; };
buildInputs = [ ocaml ]; nativeBuildInputs = [ ocaml ];
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
@ -32,8 +29,8 @@ stdenv.mkDerivation {
"Proof" keyword. "Proof" keyword.
''; '';
homepage = "https://github.com/xavierleroy/coq2html"; homepage = "https://github.com/xavierleroy/coq2html";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = with maintainers; [ jwiegley ]; maintainers = with maintainers; [ jwiegley siraben ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }