summary refs log tree commit diff
path: root/pkgs/tools/backup/duplicity/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/backup/duplicity/default.nix')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
new file mode 100644
index 00000000000..61a1ec4baf2
--- /dev/null
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -0,0 +1,24 @@
+{stdenv, fetchurl, python, librsync, makeWrapper}:
+stdenv.mkDerivation {
+  name = "duplicity-0.6.06";
+
+  src = fetchurl {
+    url = http://code.launchpad.net/duplicity/0.6-series/0.6.06/+download/duplicity-0.6.06.tar.gz;
+    sha256 = "1g284y24061krigs386x5s7vs7cnwhah7g1mfk9jfn3gzsidv70g";
+  };
+
+  installPhase = ''
+    python setup.py install --prefix=$out
+    wrapProgram $out/bin/duplicity --prefix PYTHONPATH : "$(toPythonPath $out)"
+  '';
+
+  buildInputs = [python librsync makeWrapper];
+
+  meta = {
+    description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
+    homepage = http://www.nongnu.org/duplicity;
+    license = "GPLv2+";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}