about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/twt
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-06-25 21:56:39 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-06-26 04:10:02 +0200
commitf0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd (patch)
treef5ee554beec97ed411d23f76f69a52282eb8f9a4 /pkgs/development/ocaml-modules/twt
parentaa66c9ad372448277ff113bd78039e6a30034662 (diff)
downloadnixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar.gz
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar.bz2
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar.lz
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar.xz
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.tar.zst
nixlib-f0dbe18e9b0fe59e8369dbbb02252ccbbd98f0bd.zip
ocamlPackages.twt: don’t strip
Diffstat (limited to 'pkgs/development/ocaml-modules/twt')
-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";