about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/notty
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-04-11 18:08:51 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-04-11 18:18:53 +0200
commit3ab45f4b369c9c741b55ddedeaac4c797dc61c04 (patch)
tree3c5e330622e42066e50ab20a6c58b9251addf863 /pkgs/development/ocaml-modules/notty
parent54fff9ec1a9e7425926eadffada0268351536926 (diff)
downloadnixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar.gz
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar.bz2
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar.lz
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar.xz
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.tar.zst
nixlib-3ab45f4b369c9c741b55ddedeaac4c797dc61c04.zip
treewide: use boolToString function
Diffstat (limited to 'pkgs/development/ocaml-modules/notty')
-rw-r--r--pkgs/development/ocaml-modules/notty/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix
index b967728d048c..950395bd7eaa 100644
--- a/pkgs/development/ocaml-modules/notty/default.nix
+++ b/pkgs/development/ocaml-modules/notty/default.nix
@@ -29,7 +29,7 @@ buildOcaml rec {
                           optional withLwt lwt;
 
   buildPhase = topkg.buildPhase
-  + " --with-lwt ${if withLwt then "true" else "false"}";
+  + " --with-lwt ${boolToString withLwt}";
 
   inherit (topkg) installPhase;