about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/textutils
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/ocaml-modules/textutils
parente80b41e94fc3db8e0e7f5592b8daecf52c5d5156 (diff)
downloadnixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar.gz
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar.bz2
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar.lz
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar.xz
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.tar.zst
nixlib-616aa2bddaa73b168205104cf63ae0fc27613201.zip
ocaml modules: fix some CamelCase and under_scores
Diffstat (limited to 'pkgs/development/ocaml-modules/textutils')
-rw-r--r--pkgs/development/ocaml-modules/textutils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/textutils/default.nix b/pkgs/development/ocaml-modules/textutils/default.nix
index 377b94eff8b8..07a79519745a 100644
--- a/pkgs/development/ocaml-modules/textutils/default.nix
+++ b/pkgs/development/ocaml-modules/textutils/default.nix
@@ -1,4 +1,4 @@
-{stdenv, buildOcaml, fetchurl, core, pa_ounit, pa_test, sexplib}:
+{stdenv, buildOcaml, fetchurl, core, pa-ounit, pa-test, sexplib}:
 
 buildOcaml rec {
   name = "textutils";
@@ -11,8 +11,8 @@ buildOcaml rec {
     sha256 = "605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052";
   };
 
-  buildInputs = [ pa_test ];
-  propagatedBuildInputs = [ core pa_ounit sexplib ];
+  buildInputs = [ pa-test ];
+  propagatedBuildInputs = [ core pa-ounit sexplib ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/janestreet/textutils;