ocamlPackages.ocp-indent: fix attribute name (from ocpIndent)
This commit is contained in:
parent
0d1b5285c9
commit
db8f874da8
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, ocp-build, ocpIndent, cmdliner, re }:
|
||||
{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, ocp-build, ocp-indent, cmdliner, re }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
buildInputs = [ ocaml findlib jbuilder ocp-build cmdliner re ];
|
||||
propagatedBuildInputs = [ ocpIndent ];
|
||||
propagatedBuildInputs = [ ocp-indent ];
|
||||
|
||||
buildPhase = "jbuilder build -p ocp-index";
|
||||
|
||||
|
|
|
@ -496,10 +496,10 @@ let
|
|||
|
||||
ocp-build = callPackage ../development/tools/ocaml/ocp-build { };
|
||||
|
||||
ocpIndent = callPackage ../development/tools/ocaml/ocp-indent { };
|
||||
ocpIndent_1_5_2 = callPackage ../development/tools/ocaml/ocp-indent/1.5.2.nix { cmdliner = cmdliner_0_9; };
|
||||
ocp-indent = callPackage ../development/tools/ocaml/ocp-indent { };
|
||||
ocp-indent_1_5_2 = callPackage ../development/tools/ocaml/ocp-indent/1.5.2.nix { cmdliner = cmdliner_0_9; };
|
||||
|
||||
ocp-index = callPackage ../development/tools/ocaml/ocp-index { ocpIndent = ocpIndent_1_5_2; };
|
||||
ocp-index = callPackage ../development/tools/ocaml/ocp-index { ocp-indent = ocp-indent_1_5_2; };
|
||||
|
||||
ocp-ocamlres = callPackage ../development/ocaml-modules/ocp-ocamlres { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue