summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/eliom
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@ens-lyon.org>2014-10-15 11:14:34 +0200
committerFlorent Becker <florent.becker@ens-lyon.org>2014-10-15 11:14:34 +0200
commitcfeb42b8eb61bb016741bc06885662c35af287d3 (patch)
treef302369e071da244491a67ae08333285e7778fc1 /pkgs/development/ocaml-modules/eliom
parent91fe0ddc624a5b8e05623026e4972f495f50d29b (diff)
downloadnixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar.gz
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar.bz2
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar.lz
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar.xz
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.tar.zst
nixpkgs-cfeb42b8eb61bb016741bc06885662c35af287d3.zip
Adapt the derivation for the update of eliom to 4.1
Diffstat (limited to 'pkgs/development/ocaml-modules/eliom')
-rw-r--r--pkgs/development/ocaml-modules/eliom/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix
index 5fe86a92d0d..2e23a5fa86d 100644
--- a/pkgs/development/ocaml-modules/eliom/default.nix
+++ b/pkgs/development/ocaml-modules/eliom/default.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchurl, ocaml, findlib, which, ocsigen_server, ocsigen_deriving,
   js_of_ocaml, ocaml_react, ocaml_lwt, calendar, cryptokit, tyxml,
-  ocaml_ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp}:
+  ocaml_ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp,
+  reactivedata}:
 
 stdenv.mkDerivation
 {
@@ -14,12 +15,7 @@ stdenv.mkDerivation
   buildInputs = [ocaml which ocsigen_server findlib ocsigen_deriving
                  js_of_ocaml ocaml_react ocaml_lwt calendar
                  cryptokit tyxml ocaml_ipaddr ocamlnet ocaml_ssl
-                 ocaml_pcre ocaml_optcomp];
-
-  preConfigure =
-  ''chmod a+x configure
-    sed s/deriving-ocsigen/deriving/g -i configure
-  '';
+                 ocaml_pcre ocaml_optcomp reactivedata];
 
   configureFlags = "--root $(out) --prefix /";