ocamlPackages.*: use spaces for indentation

This commit is contained in:
zowoq
2021-01-21 10:30:13 +10:00
parent 569987c1be
commit 8488ebab05
34 changed files with 429 additions and 430 deletions
@@ -5,26 +5,26 @@ then throw "ocp-ocamlres is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocp-ocamlres-${version}";
version = "0.4";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocp-ocamlres";
rev = "v${version}";
sha256 = "0smfwrj8qhzknhzawygxi0vgl2af4vyi652fkma59rzjpvscqrnn";
};
name = "ocaml${ocaml.version}-ocp-ocamlres-${version}";
version = "0.4";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocp-ocamlres";
rev = "v${version}";
sha256 = "0smfwrj8qhzknhzawygxi0vgl2af4vyi652fkma59rzjpvscqrnn";
};
buildInputs = [ ocaml findlib astring pprint ];
createFindlibDestdir = true;
buildInputs = [ ocaml findlib astring pprint ];
createFindlibDestdir = true;
installFlags = [ "BINDIR=$(out)/bin" ];
preInstall = "mkdir -p $out/bin";
installFlags = [ "BINDIR=$(out)/bin" ];
preInstall = "mkdir -p $out/bin";
meta = {
description = "A simple tool and library to embed files and directories inside OCaml executables";
license = lib.licenses.lgpl3Plus;
homepage = "https://www.typerex.org/ocp-ocamlres.html";
maintainers = [ lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
meta = {
description = "A simple tool and library to embed files and directories inside OCaml executables";
license = lib.licenses.lgpl3Plus;
homepage = "https://www.typerex.org/ocp-ocamlres.html";
maintainers = [ lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}