forked from mirrors/nixpkgs
gdrive: init at 2.1.0
Adds the go-based Google Drive CLI application "gdrive".
This commit is contained in:
parent
3e915ae995
commit
e9380248dd
24
pkgs/applications/networking/gdrive/default.nix
Normal file
24
pkgs/applications/networking/gdrive/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue