summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-04 13:42:41 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-04 13:42:41 +0000
commitc83ce140e125988428014f305a8690bf349a5c1c (patch)
tree02a646997841170265923f3f11561cd658090fe8 /pkgs
parent29efcf85c9565e0163071b2047647e8c793f9e75 (diff)
downloadnixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar.gz
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar.bz2
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar.lz
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar.xz
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.tar.zst
nixpkgs-c83ce140e125988428014f305a8690bf349a5c1c.zip
Adding 'duplicity', and its dependency 'librsync'
svn path=/nixpkgs/trunk/; revision=19813
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/librsync/default.nix20
-rw-r--r--pkgs/tools/backup/duplicity/default.nix24
-rw-r--r--pkgs/top-level/all-packages.nix8
3 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librsync/default.nix b/pkgs/development/libraries/librsync/default.nix
new file mode 100644
index 00000000000..09128e4c1c8
--- /dev/null
+++ b/pkgs/development/libraries/librsync/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "librsync-0.9.7";
+  
+  src = fetchurl {
+    url = mirror://sourceforge/librsync/librsync-0.9.7.tar.gz;
+    sha256 = "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6";
+  };
+
+  # To allow x86_64 linking to the static lib to make a shared object
+  # like for the package 'duplicity'
+  CFLAGS="-fPIC";
+
+  meta = {
+    homepage = http://librsync.sourceforge.net/;
+    license = "LGPLv2+";
+    description = "Implementation of the rsync remote-delta algorithm";
+  };
+}
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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6d4708dbe2c..bb0e02b1768 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -600,6 +600,10 @@ let
     inherit builderDefs;
   };
 
+  duplicity = import ../tools/backup/duplicity {
+    inherit fetchurl stdenv librsync makeWrapper python;
+  };
+
   dvdplusrwtools = import ../tools/cd-dvd/dvd+rw-tools {
     inherit fetchurl stdenv cdrkit m4;
   };
@@ -4162,6 +4166,10 @@ let
     inherit fetchurl stdenv pkgconfig ncurses glib;
   };
 
+  librsync = import ../development/libraries/librsync {
+    inherit stdenv fetchurl;
+  };
+
   libsigcxx = import ../development/libraries/libsigcxx {
     inherit fetchurl stdenv pkgconfig;
   };