google-drive-ocamlfuse: 0.6.17 -> 0.6.21

authored by José Romildo Malaquias and committed by vbgl 2bbef765 a0017e29

+11 -7
+11 -7
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 1 - { stdenv, fetchurl, zlib 2 , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 4 stdenv.mkDerivation rec { 5 - name = "google-drive-ocamlfuse-${version}"; 6 - version = "0.6.17"; 7 8 - src = fetchurl { 9 - url = "https://forge.ocamlcore.org/frs/download.php/1674/${name}.tar.gz"; 10 - sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas"; 11 }; 12 13 - buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]; 14 15 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 16 buildPhase = "ocaml setup.ml -build";
··· 1 + { stdenv, fetchFromGitHub, zlib 2 , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 4 stdenv.mkDerivation rec { 5 + name = "google-drive-ocamlfuse-${version}"; 6 + version = "0.6.21"; 7 8 + src = fetchFromGitHub { 9 + owner = "astrada"; 10 + repo = "google-drive-ocamlfuse"; 11 + rev = "v${version}"; 12 + sha256 = "14qvhz18pzxdgxk5vcs024ajbkxccfwc9p3z5r6vfkc9mm851v59"; 13 }; 14 15 + nativeBuildInputs = [ ocamlbuild ]; 16 + 17 + buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl ]; 18 19 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 20 buildPhase = "ocaml setup.ml -build";