2017-06-26 03:46:06 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, perl, zlib, bzip2, popt }:
|
2010-02-04 14:42:41 +01:00
|
|
|
|
2015-03-27 00:52:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "librsync-${version}";
|
2017-06-26 03:46:06 +02:00
|
|
|
version = "2.0.0";
|
2015-11-22 21:08:33 +01:00
|
|
|
|
2015-03-27 00:52:41 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "librsync";
|
|
|
|
repo = "librsync";
|
|
|
|
rev = "v${version}";
|
2017-06-26 03:46:06 +02:00
|
|
|
sha256 = "0yad7nkw6d8j824qkxrj008ak2wq6yw5p894sbhr35yc1wr5mki6";
|
2010-02-04 14:42:41 +01:00
|
|
|
};
|
|
|
|
|
2017-06-26 03:46:06 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ perl zlib bzip2 popt ];
|
2015-11-22 21:08:33 +01:00
|
|
|
|
2012-05-25 19:52:45 +02:00
|
|
|
crossAttrs = {
|
|
|
|
dontStrip = true;
|
|
|
|
};
|
|
|
|
|
2015-03-27 00:52:41 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-04 14:42:41 +01:00
|
|
|
homepage = http://librsync.sourceforge.net/;
|
2015-03-27 00:52:41 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2010-02-04 14:42:41 +01:00
|
|
|
description = "Implementation of the rsync remote-delta algorithm";
|
2015-03-27 00:52:41 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2010-02-04 14:42:41 +01:00
|
|
|
};
|
|
|
|
}
|