summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/oasis
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-09-02 09:14:59 +0200
committerThomas Strobel <ts468@cam.ac.uk>2015-09-02 09:14:59 +0200
commit616aa2bddaa73b168205104cf63ae0fc27613201 (patch)
tree324f476a2146deeb58ed72a99623e9feafb3e0f0 /pkgs/development/tools/ocaml/oasis
parente80b41e94fc3db8e0e7f5592b8daecf52c5d5156 (diff)
downloadnixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar.gz
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar.bz2
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar.lz
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar.xz
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.tar.zst
nixpkgs-616aa2bddaa73b168205104cf63ae0fc27613201.zip
ocaml modules: fix some CamelCase and under_scores
Diffstat (limited to 'pkgs/development/tools/ocaml/oasis')
-rw-r--r--pkgs/development/tools/ocaml/oasis/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix
index e823466f417..da94fed0831 100644
--- a/pkgs/development/tools/ocaml/oasis/default.nix
+++ b/pkgs/development/tools/ocaml/oasis/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, type_conv, camlp4,
+{stdenv, fetchurl, ocaml, findlib, ocaml-data-notation, type-conv, camlp4,
  ocamlmod, ocamlify, ounit, expect}:
 
 stdenv.mkDerivation {
@@ -13,10 +13,10 @@ stdenv.mkDerivation {
 
   buildInputs =
     [
-      ocaml findlib type_conv ocamlmod ocamlify ounit camlp4
+      ocaml findlib type-conv ocamlmod ocamlify ounit camlp4
     ];
 
-  propagatedBuildInputs = [ ocaml_data_notation ];
+  propagatedBuildInputs = [ ocaml-data-notation ];
 
   configurePhase = "ocaml setup.ml -configure --prefix $out";
   buildPhase     = "ocaml setup.ml -build";