2015-03-26 23:52:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, perl, zlib, bzip2, popt }:
|
2010-02-04 13:42:41 +00:00
|
|
|
|
2015-03-26 23:52:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "librsync-${version}";
|
|
|
|
version = "1.0.0";
|
2015-11-22 20:08:33 +00:00
|
|
|
|
2015-03-26 23:52:41 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "librsync";
|
|
|
|
repo = "librsync";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0rc2pksdd0mhdvk8y1yix71rf19wdx1lb2ryrkhi7vcy240rvgvc";
|
2010-02-04 13:42:41 +00:00
|
|
|
};
|
|
|
|
|
2015-03-26 23:52:41 +00:00
|
|
|
buildInputs = [ autoreconfHook perl zlib bzip2 popt ];
|
|
|
|
|
2011-12-10 22:14:08 +00:00
|
|
|
configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
|
2010-02-04 13:42:41 +00:00
|
|
|
|
2015-11-22 20:08:33 +00:00
|
|
|
CFLAGS = "-std=gnu89";
|
|
|
|
|
2012-05-25 18:52:45 +01:00
|
|
|
crossAttrs = {
|
|
|
|
dontStrip = true;
|
|
|
|
};
|
|
|
|
|
2015-03-26 23:52:41 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-04 13:42:41 +00:00
|
|
|
homepage = http://librsync.sourceforge.net/;
|
2015-03-26 23:52:41 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2010-02-04 13:42:41 +00:00
|
|
|
description = "Implementation of the rsync remote-delta algorithm";
|
2015-03-26 23:52:41 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2010-02-04 13:42:41 +00:00
|
|
|
};
|
|
|
|
}
|