nixpkgs/pkgs/applications/networking/google-drive-ocamlfuse/default.nix

30 lines
905 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, zlib
2018-09-05 18:11:47 +02:00
, ocaml, dune, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }:
2015-01-25 22:08:33 +01:00
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";
2015-01-25 22:08:33 +01:00
};
2018-09-05 18:11:47 +02:00
nativeBuildInputs = [ dune ];
buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl ];
buildPhase = "jbuilder build @install";
2018-09-05 18:11:47 +02:00
installPhase = "mkdir $out && dune install --prefix $out";
2015-01-25 22:08:33 +01:00
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 ];
2015-01-25 22:08:33 +01:00
};
}