grive: new package
This commit is contained in:
parent
3b0d9374a4
commit
b37521e297
2 changed files with 23 additions and 0 deletions
21
pkgs/tools/filesystems/grive/default.nix
Normal file
21
pkgs/tools/filesystems/grive/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -812,6 +812,8 @@ let
|
|||
*/
|
||||
graphviz_2_0 = callPackage ../tools/graphics/graphviz/2.0.nix { };
|
||||
|
||||
grive = callPackage ../tools/filesystems/grive { };
|
||||
|
||||
groff = callPackage ../tools/text/groff {
|
||||
ghostscript = null;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue