nixpkgs/pkgs/tools/backup/rdiff-backup/default.nix
Jörg Thalheim 887295fd2d
treewide: remove the-kenny from maintainers
@the-kenny did a good job in the past and is set as maintainer in many package,
however since 2017-2018 he stopped contributing. To create less confusion
in pull requests when people try to request his feedback, I removed him as
maintainer from all packages.
2020-05-09 10:28:57 +01:00

24 lines
663 B
Nix

{stdenv, fetchurl, python2Packages, librsync, gnused }:
python2Packages.buildPythonApplication {
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 ];
buildInputs = [ librsync gnused ];
doCheck = false;
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;
};
}