mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
32 lines
788 B
Nix
32 lines
788 B
Nix
{ lib, buildDunePackage, fetchFromGitHub
|
|
, extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3
|
|
, tiny_httpd
|
|
, ounit2
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "google-drive-ocamlfuse";
|
|
version = "0.7.30";
|
|
duneVersion = "3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "google-drive-ocamlfuse";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DWG0nBiqeVHaYQfGzU43gGwL4m8X61x5/RT5jD4AwYA=";
|
|
};
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ ounit2 ];
|
|
|
|
buildInputs = [ extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
|
|
|
|
meta = {
|
|
inherit (src.meta) homepage;
|
|
description = "A FUSE-based file system backed by Google Drive, written in OCaml";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ obadz ];
|
|
};
|
|
}
|