mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:21:57 +03:00
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";
|
||||
|
4
pkgs/tools/networking/gmvault/gmvault.py
Normal file
4
pkgs/tools/networking/gmvault/gmvault.py
Normal file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import gmv.gmv_cmd as runner
|
||||
runner.bootstrap_run()
|
Loading…
Reference in New Issue
Block a user