gdrive: init at 2.1.0

Adds the go-based Google Drive CLI application "gdrive".
This commit is contained in:
Richard Zetterberg 2017-04-16 14:37:53 +02:00
parent 3e915ae995
commit e9380248dd
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gdrive-${version}";
version = "2.1.0";
rev = "${version}";
goPackagePath = "github.com/prasmussen/gdrive";
src = fetchFromGitHub {
owner = "prasmussen";
repo = "gdrive";
sha256 = "0ywm4gdmrqzb1a99vg66a641r74p7lglavcpgkm6cc2gdwzjjfg7";
inherit rev;
};
meta = with stdenv.lib; {
homepage = https://github.com/prasmussen/gdrive;
description = "A command line utility for interacting with Google Drive";
platforms = platforms.linux;
license = licenses.mit;
maintainers = [ maintainers.rzetterberg ];
};
}

View file

@ -940,6 +940,8 @@ with pkgs;
gdrivefs = python27Packages.gdrivefs;
gdrive = callPackage ../applications/networking/gdrive { };
go-dependency-manager = callPackage ../development/tools/gdm { };
gencfsm = callPackage ../tools/security/gencfsm { };