summary refs log tree commit diff
path: root/pkgs/tools/filesystems/grive/default.nix
blob: a2a8bc572c0d5201e7b59342e1b7441b8149368f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit, cmake, libgcrypt, json_c, curl, expat, boost, binutils }:

stdenv.mkDerivation rec {
  name = "grive-0.2.0";

  src = fetchgit {
    url = "https://github.com/Grive/grive.git";
    rev = "34cb3705288aa83283b370118776ac89393ae5fc";
    sha256 = "a30ea886bdc159e1004d1207fcac30c277f1177a3b846bdd82326eebff7a0bbe";
  };

  buildInputs = [cmake libgcrypt json_c curl expat stdenv binutils boost];

  meta = {
    description = "an open source (experimental) Linux client for Google Drive";
    homepage = https://github.com/Grive/grive;
    license = "GPLv2";

    platforms = stdenv.lib.platforms.all;
  };
}