summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-24 10:14:14 -0700
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:50 -0700
commitea0d507935b4deda7faea3ac6d34a11e44f286e8 (patch)
tree8dfbeb4cea0ccc642d88bee3ee832d21df29781c /pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
parentcac000d73a81e400e9e49cd14fb6070bea34df5a (diff)
downloadnixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar.gz
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar.bz2
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar.lz
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar.xz
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.tar.zst
nixlib-ea0d507935b4deda7faea3ac6d34a11e44f286e8.zip
sexplib: rename from ocaml_sexplib to sexplib
There really isn't any need for it to be named ocaml_sexplib
Diffstat (limited to 'pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix b/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
index 09cfe1c350dd..6b50f79caf99 100644
--- a/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
@@ -1,15 +1,15 @@
-{ocaml, findlib, stdenv, fetchurl, ocaml_sexplib}:
+{ocaml, findlib, stdenv, fetchurl, sexplib}:
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
 stdenv.mkDerivation {
   name = "ocaml-ipaddr-2.5.0";
-  
+
   src = fetchurl {
     url = https://github.com/mirage/ocaml-ipaddr/archive/2.5.0.tar.gz;
     sha256 = "0zpslxzjs5zdw20j3jaf6fr0w2imnidhrzggmnvwp198r76aq917";
   };
 
   buildInputs = [ocaml findlib];
-  propagatedBuildInputs = [ocaml_sexplib];
+  propagatedBuildInputs = [sexplib];
 
   createFindlibDestdir = true;
 
@@ -19,5 +19,5 @@ stdenv.mkDerivation {
     maintainers = [ maintainers.vbgl ];
     platforms = ocaml.meta.platforms;
   };
-  
+
 }