gdrive: init at 2.1.0
Adds the go-based Google Drive CLI application "gdrive".
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user