gdrive: init at 2.1.0

Adds the go-based Google Drive CLI application "gdrive".

+26
+24
pkgs/applications/networking/gdrive/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "gdrive-${version}"; 5 + version = "2.1.0"; 6 + rev = "${version}"; 7 + 8 + goPackagePath = "github.com/prasmussen/gdrive"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "prasmussen"; 12 + repo = "gdrive"; 13 + sha256 = "0ywm4gdmrqzb1a99vg66a641r74p7lglavcpgkm6cc2gdwzjjfg7"; 14 + inherit rev; 15 + }; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://github.com/prasmussen/gdrive; 19 + description = "A command line utility for interacting with Google Drive"; 20 + platforms = platforms.linux; 21 + license = licenses.mit; 22 + maintainers = [ maintainers.rzetterberg ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 940 940 941 941 gdrivefs = python27Packages.gdrivefs; 942 942 943 + gdrive = callPackage ../applications/networking/gdrive { }; 944 + 943 945 go-dependency-manager = callPackage ../development/tools/gdm { }; 944 946 945 947 gencfsm = callPackage ../tools/security/gencfsm { };