From 1b08952db083467a9bc9f06d71e60e0d1c742e8c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 18 Apr 2025 13:28:57 +0200 Subject: [PATCH] ocamlPackages.reanalyze: add indentation --- .../tools/ocaml/reanalyze/default.nix | 39 ++++++++++--------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/pkgs/development/tools/ocaml/reanalyze/default.nix b/pkgs/development/tools/ocaml/reanalyze/default.nix index e4b36e1aebcb..1882e15a084a 100644 --- a/pkgs/development/tools/ocaml/reanalyze/default.nix +++ b/pkgs/development/tools/ocaml/reanalyze/default.nix @@ -9,26 +9,27 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.3") "reanalyze is not available for OCaml ${ocaml.version}" -buildDunePackage rec { - pname = "reanalyze"; - version = "2.25.1"; + buildDunePackage + rec { + pname = "reanalyze"; + version = "2.25.1"; - minimalOCamlVersion = "4.08"; + minimalOCamlVersion = "4.08"; - src = fetchFromGitHub { - owner = "rescript-lang"; - repo = "reanalyze"; - tag = "v${version}"; - hash = "sha256-cM39Gk4Ko7o/DyhrzgEHilobaB3h91Knltkcv2sglFw="; - }; + src = fetchFromGitHub { + owner = "rescript-lang"; + repo = "reanalyze"; + tag = "v${version}"; + hash = "sha256-cM39Gk4Ko7o/DyhrzgEHilobaB3h91Knltkcv2sglFw="; + }; - nativeBuildInputs = [ cppo ]; + nativeBuildInputs = [ cppo ]; - meta = { - description = "Program analysis for ReScript and OCaml projects"; - homepage = "https://github.com/rescript-lang/reanalyze/"; - changelog = "https://github.com/rescript-lang/reanalyze/blob/v${version}/Changes.md"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; - }; -} + meta = { + description = "Program analysis for ReScript and OCaml projects"; + homepage = "https://github.com/rescript-lang/reanalyze/"; + changelog = "https://github.com/rescript-lang/reanalyze/blob/v${version}/Changes.md"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; + }; + }