2019-01-09 15:14:22 +00:00
|
|
|
{ lib, fetchzip, buildDunePackage, cmdliner }:
|
2014-10-28 17:09:42 +00:00
|
|
|
|
2019-01-09 15:14:22 +00:00
|
|
|
buildDunePackage rec {
|
2019-10-27 18:14:41 +00:00
|
|
|
version = "1.8.1";
|
2019-01-09 15:14:22 +00:00
|
|
|
pname = "ocp-indent";
|
2014-10-28 17:09:42 +00:00
|
|
|
|
2015-10-14 18:26:38 +01:00
|
|
|
src = fetchzip {
|
2017-05-28 21:39:21 +01:00
|
|
|
url = "https://github.com/OCamlPro/ocp-indent/archive/${version}.tar.gz";
|
2019-10-27 18:14:41 +00:00
|
|
|
sha256 = "0h4ysh36q1fxc40inhsdq2swqpfm15lpilqqcafs5ska42pn7s68";
|
2014-10-28 17:09:42 +00:00
|
|
|
};
|
|
|
|
|
2019-01-09 15:14:22 +00:00
|
|
|
minimumOCamlVersion = "4.02";
|
2014-10-28 17:09:42 +00:00
|
|
|
|
2019-01-09 15:14:22 +00:00
|
|
|
buildInputs = [ cmdliner ];
|
2014-10-28 17:09:42 +00:00
|
|
|
|
2019-01-09 15:14:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://typerex.ocamlpro.com/ocp-indent.html";
|
2014-10-28 17:09:42 +00:00
|
|
|
description = "A customizable tool to indent OCaml code";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
|
|
};
|
|
|
|
}
|