gmvault: Fix start script
This commit is contained in:
parent
6eb8048c8f
commit
76b18e4204
|
@ -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()
|
Loading…
Reference in New Issue