ocamlPackages.ocp-indent: 1.6.1 -> 1.7.0

This commit is contained in:
Vincent Laporte 2019-01-09 15:14:22 +00:00
parent 522148ba4e
commit a18ac72b4a
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,31 +1,22 @@
{ stdenv, fetchzip, ocaml, findlib, dune, ocp-build, cmdliner }: { lib, fetchzip, buildDunePackage, cmdliner }:
let inherit (stdenv.lib) getVersion versionAtLeast; in buildDunePackage rec {
version = "1.7.0";
assert versionAtLeast (getVersion ocaml) "3.12.1"; pname = "ocp-indent";
assert versionAtLeast (getVersion cmdliner) "1.0.0";
assert versionAtLeast (getVersion ocp-build) "1.99.6-beta";
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocp-indent-${version}";
version = "1.6.1";
src = fetchzip { src = fetchzip {
url = "https://github.com/OCamlPro/ocp-indent/archive/${version}.tar.gz"; url = "https://github.com/OCamlPro/ocp-indent/archive/${version}.tar.gz";
sha256 = "0rcaa11mjqka032g94wgw9llqpflyk3ywr3lr6jyxbh1rjvnipnw"; sha256 = "006x3fsd61vxnxj4chlakyk3b2s10pb0bdl46g0ghf3j8h33x7hc";
}; };
nativeBuildInputs = [ ocp-build ]; minimumOCamlVersion = "4.02";
buildInputs = [ ocaml findlib cmdliner ];
inherit (dune) installPhase; buildInputs = [ cmdliner ];
meta = with stdenv.lib; { meta = with lib; {
homepage = http://typerex.ocamlpro.com/ocp-indent.html; homepage = http://typerex.ocamlpro.com/ocp-indent.html;
description = "A customizable tool to indent OCaml code"; description = "A customizable tool to indent OCaml code";
license = licenses.gpl3; license = licenses.gpl3;
platforms = ocaml.meta.platforms or [];
maintainers = [ maintainers.jirkamarsik ]; maintainers = [ maintainers.jirkamarsik ];
}; };
} }