summary refs log blame commit diff
path: root/pkgs/tools/filesystems/grive2/default.nix
blob: f325fc97e32c16fcf550cf47a555d529fc9fdccf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                              

                         
                    
                   




                         
                                                                    



                                          
                                                                     








                                                  
{ stdenv, fetchFromGitHub, pkgconfig, yajl, cmake, libgcrypt, curl, expat, boost, libiberty }:

stdenv.mkDerivation rec {
  version = "0.5.1";
  pname = "grive2";

  src = fetchFromGitHub {
    owner = "vitalif";
    repo = "grive2";
    rev =  "v${version}";
    sha256 = "1kv34ys8qarjsxpb1kd8dp7b3b4ycyiwjzd6mg97d3jk7405g6nm";
  };

  nativeBuildInputs = [ cmake pkgconfig ];

  buildInputs = [ libgcrypt yajl curl expat stdenv boost libiberty ];

  meta = with stdenv.lib; {
    description = "A console Google Drive client";
    homepage = https://github.com/vitalif/grive2;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };

}