rdiff_backup: update from 1.2.8 to 1.3.3

This commit is contained in:
Moritz Ulrich 2013-12-09 00:34:00 +00:00
parent 2d6c240913
commit c727c38b26

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, python, librsync, gnused }:
stdenv.mkDerivation {
name = "rdiff-backup-1.2.8";
name = "rdiff-backup-1.3.3";
src = fetchurl {
url = mirror://savannah/rdiff-backup/rdiff-backup-1.2.8.tar.gz;
sha256 = "1nwmmh816f96h0ff1jxk95ad38ilbhbdl5dgibx1d4cl81dsi48d";
url = mirror://savannah/rdiff-backup/rdiff-backup-1.3.3.tar.gz;
sha256 = "01hcwf5rgqi303fa4kdjkbpa7n8mvvh7h9gpgh2b23nz73k0q0zf";
};
phases = "unpackPhase installPhase";
@ -15,11 +15,12 @@ stdenv.mkDerivation {
"/import sys/ asys.path += [ \"$out/lib/python2.7/site-packages/\" ]"
'';
buildInputs = [python librsync gnused ];
buildInputs = [ python librsync gnused ];
meta = {
description = "backup system trying to combine best a mirror and an incremental backup system";
homepage = http://rdiff-backup.nongnu.org/;
license = "GPL-2";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}