2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2017-04-16 05:37:53 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gdrive";
|
2017-04-16 05:37:53 -07:00
|
|
|
version = "2.1.0";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2017-04-16 05:37:53 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/prasmussen/gdrive";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "prasmussen";
|
|
|
|
repo = "gdrive";
|
|
|
|
sha256 = "0ywm4gdmrqzb1a99vg66a641r74p7lglavcpgkm6cc2gdwzjjfg7";
|
|
|
|
inherit rev;
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/prasmussen/gdrive";
|
2017-04-16 05:37:53 -07:00
|
|
|
description = "A command line utility for interacting with Google Drive";
|
2019-02-17 05:00:33 -08:00
|
|
|
platforms = platforms.unix;
|
2017-04-16 05:37:53 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.rzetterberg ];
|
|
|
|
};
|
|
|
|
}
|