about summary refs log tree commit diff
path: root/pkgs/tools/backup/rdiff-backup/default.nix
blob: 1c313beae9fdf15141e4db388e98ee6fc1fada9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{stdenv, fetchurl, python, librsync, gnused }:

stdenv.mkDerivation {
  name = "rdiff-backup-1.3.3";

  src = fetchurl {
    url = mirror://savannah/rdiff-backup/rdiff-backup-1.3.3.tar.gz;
    sha256 = "01hcwf5rgqi303fa4kdjkbpa7n8mvvh7h9gpgh2b23nz73k0q0zf";
  };

  patches = [ ./fix-librsync-rs_default_strong_len.patch ];

  installPhase = ''
    python ./setup.py install --prefix=$out
    sed -i $out/bin/rdiff-backup -e \
      "/import sys/ asys.path += [ \"$out/lib/python2.7/site-packages/\" ]"
    sed -i $out/bin/rdiff-backup-statistics -e \
      "/import .*sys/ asys.path += [ \"$out/lib/python2.7/site-packages/\" ]"
  '';

  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 = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
  };
}