about summary refs log tree commit diff
path: root/pkgs/applications/networking/google-drive-ocamlfuse
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2022-11-16 13:12:28 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-11-16 14:30:37 +0100
commita110f08f12eb10a25e1e0c7545c13e1246d0da25 (patch)
treed07f78a8bc862eac7b1f81e4f264fce9ba98c8aa /pkgs/applications/networking/google-drive-ocamlfuse
parenta834cc840fddf422d8b8ba6c2b06726cdacf2eec (diff)
ocamlPackages.extlib: rename from ocaml_extlib
This matches the name used in dune and on OPAM.
Diffstat (limited to 'pkgs/applications/networking/google-drive-ocamlfuse')
-rw-r--r--pkgs/applications/networking/google-drive-ocamlfuse/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
index 612bb0eaf160c..a61458155d0cb 100644
--- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
+++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
@@ -1,5 +1,5 @@
 { lib, buildDunePackage, fetchFromGitHub
-, ocaml_extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3
+, extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3
 , tiny_httpd
 , ounit
 }:
@@ -18,7 +18,7 @@ buildDunePackage rec {
   doCheck = true;
   checkInputs = [ ounit ];
 
-  buildInputs = [ ocaml_extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
+  buildInputs = [ extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
 
   meta = {
     inherit (src.meta) homepage;