about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sqlexpr/default.nix
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-11-14 17:43:21 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-11-14 17:53:53 +0000
commit26798bd6e07cb56b31faa6d7ab8ce814e6d040cf (patch)
treecbdb77512ae18c4bccb61e77650b9c8e3249fe8b /pkgs/development/ocaml-modules/sqlexpr/default.nix
parenta3aae2c831fd518f7e0959870e27c07c9d8cc810 (diff)
downloadnixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar.gz
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar.bz2
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar.lz
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar.xz
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.tar.zst
nixlib-26798bd6e07cb56b31faa6d7ab8ce814e6d040cf.zip
ocamlPackages.batteries: 2.7.0 -> 2.8.0
Also renames the attribute from ocaml_batteries to batteries.
Diffstat (limited to 'pkgs/development/ocaml-modules/sqlexpr/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/sqlexpr/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/sqlexpr/default.nix b/pkgs/development/ocaml-modules/sqlexpr/default.nix
index 6d1654f2b42f..363d5850ec60 100644
--- a/pkgs/development/ocaml-modules/sqlexpr/default.nix
+++ b/pkgs/development/ocaml-modules/sqlexpr/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildOcaml, fetchurl, ocaml_batteries, csv, ocaml_lwt, ocaml_sqlite3, estring }:
+{ stdenv, buildOcaml, fetchurl, batteries, csv, ocaml_lwt, ocaml_sqlite3, estring }:
 
 buildOcaml rec {
   name = "sqlexpr";
@@ -9,7 +9,7 @@ buildOcaml rec {
     sha256 = "02pi0xxr3xzalwpvcaq96k57wz2vxj20l2mga1a4d2ddvhran8kr";
   };
 
-  propagatedBuildInputs = [ ocaml_batteries csv ocaml_lwt ocaml_sqlite3 estring ];
+  propagatedBuildInputs = [ batteries csv ocaml_lwt ocaml_sqlite3 estring ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/mfp/ocaml-sqlexpr;