nixpkgs/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
Kim Lindberger 7451f11730
google-drive-ocamlfuse: 0.7.2 -> 0.7.21 (#86469)
ocamlPackages.ocamlfuse: 2.7.1_cvs5 -> 2.7.1_cvs6_e35e76b
2020-05-10 21:24:18 +02:00

26 lines
711 B
Nix

{ stdenv, buildDunePackage, fetchFromGitHub
, ocamlfuse, gapi_ocaml, ocaml_sqlite3
}:
buildDunePackage rec {
pname = "google-drive-ocamlfuse";
version = "0.7.21";
src = fetchFromGitHub {
owner = "astrada";
repo = "google-drive-ocamlfuse";
rev = "v${version}";
sha256 = "0by3qnjrr1mbxyl2n99zggx8dxnqlicsq2b2hhhxb2d0k8qn47sw";
};
buildInputs = [ ocamlfuse gapi_ocaml ocaml_sqlite3 ];
meta = {
homepage = "http://gdfuse.forge.ocamlcore.org/";
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 ];
};
}