2017-06-26 02:46:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, 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}";
|
2018-03-22 22:29:19 +00:00
|
|
|
version = "2.0.2";
|
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}";
|
2018-03-22 22:29:19 +00:00
|
|
|
sha256 = "1qnr4rk93mhggqjh2025clmlhhgnjhq983p1vbh8i1g8aiqdnapi";
|
2010-02-04 13:42:41 +00:00
|
|
|
};
|
|
|
|
|
2017-06-26 02:46:06 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ perl zlib bzip2 popt ];
|
2015-11-22 20:08:33 +00:00
|
|
|
|
2018-05-10 18:08:07 +01:00
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
2012-05-25 18:52:45 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|