ocamlPackages.ocp-index: 1.1.9 → 1.2

This commit is contained in:
Vincent Laporte 2020-02-24 18:19:48 +01:00 committed by Vincent Laporte
parent d02dc3c5fd
commit 9794d1e5fc

View File

@ -1,14 +1,12 @@
{ stdenv, fetchFromGitHub, buildDunePackage, ocp-build, ocp-indent, cmdliner, re, }: { lib, fetchurl, buildDunePackage, ocp-build, ocp-indent, cmdliner, re }:
buildDunePackage rec { buildDunePackage rec {
pname = "ocp-index"; pname = "ocp-index";
version = "1.1.9"; version = "1.2";
src = fetchFromGitHub { src = fetchurl {
owner = "OCamlPro"; url = "https://github.com/OCamlPro/ocp-index/releases/download/${version}/ocp-index-${version}.tbz";
repo = pname; sha256 = "1lchw02sakjjppmzr0rzlarwbg1lc2bl7pwcfpsiycnaz46x6gmr";
rev = version;
sha256 = "0dq1kap16xfajc6gg9hbiadax782winpvxnr3dkm2ncznnxds37p";
}; };
buildInputs = [ ocp-build cmdliner re ]; buildInputs = [ ocp-build cmdliner re ];
@ -18,7 +16,7 @@ buildDunePackage rec {
meta = { meta = {
homepage = http://typerex.ocamlpro.com/ocp-index.html; homepage = http://typerex.ocamlpro.com/ocp-index.html;
description = "A simple and light-weight documentation extractor for OCaml"; description = "A simple and light-weight documentation extractor for OCaml";
license = stdenv.lib.licenses.lgpl3; license = lib.licenses.lgpl3;
maintainers = with stdenv.lib.maintainers; [ vbgl ]; maintainers = with lib.maintainers; [ vbgl ];
}; };
} }