gmvault: Fix start script

This commit is contained in:
Ricardo M. Correia 2013-06-05 02:25:20 +00:00
parent 6eb8048c8f
commit 76b18e4204
2 changed files with 11 additions and 0 deletions

@ -19,6 +19,13 @@ buildPythonPackage rec {
pythonPackages.argparse
];
startScript = ./gmvault.py;
patchPhase = ''
cat ${startScript} > etc/scripts/gmvault
chmod +x etc/scripts/gmvault
'';
meta = {
description = "Gmvault Gmail Backup - Backup and restore your gmail account at will.";
homepage = "http://gmvault.org";

@ -0,0 +1,4 @@
#!/usr/bin/env python
import gmv.gmv_cmd as runner
runner.bootstrap_run()