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