about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-07-11 08:46:37 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-07-18 09:11:35 +0200
commitae0b8a01b10a689d0d33e9024b8480069e5c854d (patch)
tree3f7610891244c070d7bb4c40def2d10a9c86eb64 /pkgs/applications
parent950a258b9ef24ca4346bbf722a694c2ab54e4654 (diff)
ocamlPackages.gapi-ocaml: 0.4.2 → 0.4.3
Diffstat (limited to 'pkgs/applications')
-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 02df4313f7fc2..eb677eb00ded7 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
+, ocaml_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 = [ ocaml_extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
 
   meta = {
     inherit (src.meta) homepage;