summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/oasis
diff options
context:
space:
mode:
authorts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
committerts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
commit054be41e04e2f583433c8d69f73f63389aec7f77 (patch)
tree57b99067b9535540280af72c31b134d8ba8e1589 /pkgs/development/tools/ocaml/oasis
parenta9dab9df6110f6f5c8300c4408c845d8176539bd (diff)
downloadnixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar.gz
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar.bz2
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar.lz
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar.xz
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.tar.zst
nixpkgs-054be41e04e2f583433c8d69f73f63389aec7f77.zip
Revert "ocaml-modules: fix naming: "_" -> "-""
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 da94fed0831..e823466f417 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";