ocamlPackages.google-drive-ocamlfuse: 0.7.21 → 0.7.22
This commit is contained in:
parent
366488c648
commit
a2b7bad6c8
@ -1,25 +1,27 @@
|
|||||||
{ stdenv, buildDunePackage, fetchFromGitHub
|
{ lib, buildDunePackage, fetchFromGitHub
|
||||||
, ocamlfuse, gapi_ocaml, ocaml_sqlite3
|
, ocaml_extlib, ocamlfuse, gapi_ocaml, ocaml_sqlite3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "google-drive-ocamlfuse";
|
pname = "google-drive-ocamlfuse";
|
||||||
version = "0.7.21";
|
version = "0.7.22";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "astrada";
|
owner = "astrada";
|
||||||
repo = "google-drive-ocamlfuse";
|
repo = "google-drive-ocamlfuse";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0by3qnjrr1mbxyl2n99zggx8dxnqlicsq2b2hhhxb2d0k8qn47sw";
|
sha256 = "027j1r2iy8vnbqs8bv893f0909yk5312ki5p3zh2pdz6s865h750";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocamlfuse gapi_ocaml ocaml_sqlite3 ];
|
buildInputs = [ ocaml_extlib ocamlfuse gapi_ocaml ocaml_sqlite3 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://gdfuse.forge.ocamlcore.org/";
|
inherit (src.meta) homepage;
|
||||||
description = "A FUSE-based file system backed by Google Drive, written in OCaml";
|
description = "A FUSE-based file system backed by Google Drive, written in OCaml";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ obadz ];
|
maintainers = with lib.maintainers; [ obadz ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user