2020-05-10 19:24:18 +00:00
|
|
|
{ stdenv, buildDunePackage, fetchFromGitHub
|
|
|
|
, ocamlfuse, gapi_ocaml, ocaml_sqlite3
|
|
|
|
}:
|
2015-01-25 21:08:33 +00:00
|
|
|
|
2020-05-10 19:24:18 +00:00
|
|
|
buildDunePackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "google-drive-ocamlfuse";
|
2020-05-10 19:24:18 +00:00
|
|
|
version = "0.7.21";
|
2015-10-07 16:37:25 +00:00
|
|
|
|
2017-09-20 11:56:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "astrada";
|
|
|
|
repo = "google-drive-ocamlfuse";
|
|
|
|
rev = "v${version}";
|
2020-05-10 19:24:18 +00:00
|
|
|
sha256 = "0by3qnjrr1mbxyl2n99zggx8dxnqlicsq2b2hhhxb2d0k8qn47sw";
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 19:24:18 +00:00
|
|
|
buildInputs = [ ocamlfuse gapi_ocaml ocaml_sqlite3 ];
|
2015-01-25 21:08:33 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://gdfuse.forge.ocamlcore.org/";
|
2015-10-07 16:37:25 +00:00
|
|
|
description = "A FUSE-based file system backed by Google Drive, written in OCaml";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ obadz ];
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
}
|