about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 05:28:05 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 20:14:57 +0000
commitdb8f874da87993cc23584472433b3c98a34d7cc1 (patch)
treef24cc4154775d198134e67650945cee65942f5be /pkgs
parent0d1b5285c91f93641f485da339de3382463c347c (diff)
downloadnixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar.gz
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar.bz2
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar.lz
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar.xz
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.tar.zst
nixlib-db8f874da87993cc23584472433b3c98a34d7cc1.zip
ocamlPackages.ocp-indent: fix attribute name (from ocpIndent)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/ocaml/ocp-index/default.nix4
-rw-r--r--pkgs/top-level/ocaml-packages.nix6
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix
index 8f6062adb066..0a63ae805342 100644
--- a/pkgs/development/tools/ocaml/ocp-index/default.nix
+++ b/pkgs/development/tools/ocaml/ocp-index/default.nix
@@ -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";
 
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index 3f334d1ed17d..b6817c84d810 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -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 { };