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
|
|
|
|
2018-08-03 17:52:40 +01:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.enableFeature stdenv.isCygwin "static")
|
|
|
|
(stdenv.lib.enableFeature (!stdenv.isCygwin) "shared")
|
|
|
|
];
|
2015-04-16 16:58:31 +01:00
|
|
|
|
2018-05-10 18:08:07 +01:00
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
2015-04-16 16:58:31 +01:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|