a140fe83f5
Also change to use jbuilder for build per upstream instructions. In this case, the build needs to be driven by jbuilder but opam still needs to be in PATH.
29 lines
928 B
Nix
29 lines
928 B
Nix
{ stdenv, fetchFromGitHub, zlib
|
|
, ocaml, jbuilder, opam, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "google-drive-ocamlfuse-${version}";
|
|
version = "0.6.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "google-drive-ocamlfuse";
|
|
rev = "v${version}";
|
|
sha256 = "1rjm2jcc93sz7l25zbgqal81534vvvbmwy7847s0k8fkr5nq97gp";
|
|
};
|
|
|
|
nativeBuildInputs = [ jbuilder opam ];
|
|
|
|
buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl ];
|
|
|
|
buildPhase = "jbuilder build @install";
|
|
installPhase = "mkdir $out && jbuilder install --prefix $out";
|
|
|
|
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 ];
|
|
};
|
|
}
|