2016-09-19 17:00:42 +00:00
|
|
|
{ stdenv, fetchurl, zlib
|
2017-04-01 08:52:19 +00:00
|
|
|
, ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }:
|
2015-01-25 21:08:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-18 10:01:36 +00:00
|
|
|
name = "google-drive-ocamlfuse-${version}";
|
|
|
|
version = "0.6.17";
|
2015-10-07 16:37:25 +00:00
|
|
|
|
2016-03-29 13:10:00 +00:00
|
|
|
src = fetchurl {
|
2017-02-18 10:01:36 +00:00
|
|
|
url = "https://forge.ocamlcore.org/frs/download.php/1674/${name}.tar.gz";
|
|
|
|
sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas";
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 08:52:19 +00:00
|
|
|
buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl];
|
2015-10-07 16:37:25 +00:00
|
|
|
|
2015-01-25 21:08:33 +00:00
|
|
|
configurePhase = "ocaml setup.ml -configure --prefix \"$out\"";
|
|
|
|
buildPhase = "ocaml setup.ml -build";
|
|
|
|
installPhase = "ocaml setup.ml -install";
|
|
|
|
|
|
|
|
meta = {
|
2015-10-07 16:37:25 +00:00
|
|
|
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 ];
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
}
|