gmvault: New package

Gmvault Gmail Backup - Backup and restore your gmail account at will.
This commit is contained in:
Ricardo M. Correia 2013-05-31 12:08:34 +00:00
parent fa6f6ccefa
commit 6eb8048c8f
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ pkgs, fetchurl, buildPythonPackage, pythonPackages }:
buildPythonPackage rec {
version = "1.8.1-beta";
name = "gmvault-${version}";
src = fetchurl {
url = "https://bitbucket.org/gaubert/gmvault-official-download/downloads/gmvault-v${version}-src.tar.gz";
name = "${name}.tar.bz";
sha256 = "0b575cnrd6jzcpa05mbn2swzcy0r9ck09pkhs4ydj6d3ir52j80c";
};
doCheck = false;
propagatedBuildInputs = [
pythonPackages.gdata
pythonPackages.IMAPClient
pythonPackages.Logbook
pythonPackages.argparse
];
meta = {
description = "Gmvault Gmail Backup - Backup and restore your gmail account at will.";
homepage = "http://gmvault.org";
license = pkgs.lib.licenses.agpl3Plus;
};
}

View File

@ -865,6 +865,8 @@ let
glxinfo = callPackage ../tools/graphics/glxinfo { };
gmvault = callPackage ../tools/networking/gmvault { };
gnokii = builderDefsPackage (import ../tools/misc/gnokii) {
inherit intltool perl gettext libusb pkgconfig bluez readline pcsclite
libical gtk glib;