2016-02-07 15:27:57 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2015-04-16 16:58:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "librsync-0.9.7";
|
2016-02-07 15:27:57 +00:00
|
|
|
|
2015-04-16 16:58:31 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/librsync/librsync-0.9.7.tar.gz;
|
|
|
|
sha256 = "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6";
|
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 15:27:57 +00:00
|
|
|
|
2015-04-16 16:58:31 +01:00
|
|
|
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
|
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
dontStrip = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://librsync.sourceforge.net/;
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
description = "Implementation of the rsync remote-delta algorithm";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-04-16 16:58:31 +01:00
|
|
|
};
|
|
|
|
}
|