about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/twt/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/twt/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/twt/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix
index e5831be93bda..207a7b183e6e 100644
--- a/pkgs/development/ocaml-modules/twt/default.nix
+++ b/pkgs/development/ocaml-modules/twt/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchzip, ocaml, findlib }:
 
 stdenv.mkDerivation {
-  name = "ocaml-twt-0.94.0";
+  name = "ocaml${ocaml.version}-twt-0.94.0";
 
   src = fetchzip {
     url = https://github.com/mlin/twt/archive/v0.94.0.tar.gz;
@@ -20,6 +20,8 @@ stdenv.mkDerivation {
 
   installFlags = "PREFIX=$(out)";
 
+  dontStrip = true;
+
   meta = with stdenv.lib; {
     homepage = http://people.csail.mit.edu/mikelin/ocaml+twt/;
     description = "“The Whitespace Thing” for OCaml";