summary refs log tree commit diff
path: root/pkgs/tools/backup/duply
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-08-21 21:56:33 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-08-21 22:16:20 +0200
commit61822435fd2fc4262ee4c513cc7a95abd8740c0f (patch)
tree5d63941024f054014274f24efb70bebb14c5c6dd /pkgs/tools/backup/duply
parent115e78216e51191f9062809ec79efbadba38ae9a (diff)
downloadnixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar.gz
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar.bz2
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar.lz
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar.xz
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.tar.zst
nixpkgs-61822435fd2fc4262ee4c513cc7a95abd8740c0f.zip
duply: new package
Duply is a shell front end for the duplicity backup tool
http://duplicity.nongnu.org/. It greatly simplifies it's usage by
implementing backup job profiles, batch commands and more. Who says
secure backups on non-trusted spaces are no child's play?

Homepage: http://duply.net/
Diffstat (limited to 'pkgs/tools/backup/duply')
-rw-r--r--pkgs/tools/backup/duply/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/tools/backup/duply/default.nix b/pkgs/tools/backup/duply/default.nix
new file mode 100644
index 00000000000..affedcae73a
--- /dev/null
+++ b/pkgs/tools/backup/duply/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, coreutils, python, duplicity, gawk, gnupg1, bash
+, gnugrep, txt2man, makeWrapper }:
+
+stdenv.mkDerivation {
+  name = "duply-1.5.11";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/1.5.x/duply_1.5.11.tgz";
+    sha256 = "07z4wl75z227v8y9xwc2pfdp307a5jzx4sif598vprqync0g6mmk";
+  };
+
+  buildInputs = [ txt2man makeWrapper ];
+
+  phases = [ "unpackPhase" "installPhase" ];
+
+  installPhase = ''
+    mkdir -p "$out/bin"
+    mkdir -p "$out/share/man/man1"
+    sed -i 's|/usr/bin/env bash|${bash}/bin/bash|' duply
+    mv duply "$out/bin"
+    wrapProgram "$out/bin/duply" --set PATH \
+        "${coreutils}/bin:${python}/bin:${duplicity}/bin:${gawk}/bin:${gnupg1}/bin:${bash}/bin:${gnugrep}/bin:${txt2man}/bin"
+    "$out/bin/duply" txt2man | gzip -c > "$out/share/man/man1/duply.1.gz"
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Shell front end for the duplicity backup tool";
+    longDescription = ''
+      Duply is a shell front end for the duplicity backup tool
+      http://duplicity.nongnu.org/. It greatly simplifies it's usage by
+      implementing backup job profiles, batch commands and more. Who says
+      secure backups on non-trusted spaces are no child's play?
+    '';
+    homepage = http://duply.net/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.bjornfor ];
+    platforms = platforms.unix;
+  };
+}