aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-07-09 15:46:00 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-07-09 15:46:00 +0200
commit74c24385cb2864f937031df74af14fc8060e1540 (patch)
tree5524856cfa11a449f4bef972fbc994bec6ff44cf /pkgs/tools/backup
parent5c8472a2a17625855d0811ebb5709c9aa84fdd3f (diff)
parentf0e38f7b3810b0f06bbe6908158fcb247d0e2dd3 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/iceshelf/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/backup/iceshelf/default.nix b/pkgs/tools/backup/iceshelf/default.nix
new file mode 100644
index 00000000000..546339ca002
--- /dev/null
+++ b/pkgs/tools/backup/iceshelf/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, lib, fetchFromGitHub, git, awscli, python3 }:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "iceshelf";
+ version = "unstable-2019-07-03";
+
+ format = "other";
+
+ src = fetchFromGitHub {
+ owner = "mrworf";
+ repo = pname;
+ rev = "26768dde3fc54fa412e523eb8f8552e866b4853b";
+ sha256 = "08rcbd14vn7312rmk2hyvdzvhibri31c4r5lzdrwb1n1y9q761qm";
+ };
+
+ propagatedBuildInputs = [
+ git
+ awscli
+ python3.pkgs.python-gnupg
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/doc/${pname} $out/${python3.sitePackages}
+ cp -v iceshelf iceshelf-restore $out/bin
+ cp -v iceshelf.sample.conf $out/share/doc/${pname}/
+ cp -rv modules $out/${python3.sitePackages}
+ '';
+
+ meta = with lib; {
+ description = "A simple tool to allow storage of signed, encrypted, incremental backups using Amazon's Glacier storage";
+ license = licenses.lgpl2;
+ homepage = "https://github.com/mrworf/iceshelf";
+ maintainers = with maintainers; [ mmahut ];
+ };
+}