From 056ff2705af55eebeaaadf9d5a175834fed58bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 5 Jun 2010 15:06:12 +0000 Subject: [PATCH] Making duplicity's rdiffdir work (it had to be wrapped) svn path=/nixpkgs/trunk/; revision=22157 --- pkgs/tools/backup/duplicity/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix index a58436f743f..d2c28fa638e 100644 --- a/pkgs/tools/backup/duplicity/default.nix +++ b/pkgs/tools/backup/duplicity/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation { wrapProgram $out/bin/duplicity \ --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \ --prefix PATH : "${gnupg}/bin" + wrapProgram $out/bin/rdiffdir \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \ ''; buildInputs = [ python librsync makeWrapper ];