nixpkgs/pkgs/development/libraries/librsync/default.nix

26 lines
665 B
Nix
Raw Normal View History

2017-06-26 02:46:06 +01:00
{ stdenv, fetchFromGitHub, cmake, perl, zlib, bzip2, popt }:
2015-03-26 23:52:41 +00:00
stdenv.mkDerivation rec {
pname = "librsync";
2020-04-09 06:04:22 +01:00
version = "2.3.0";
2015-03-26 23:52:41 +00:00
src = fetchFromGitHub {
owner = "librsync";
repo = "librsync";
rev = "v${version}";
2020-04-09 06:04:22 +01:00
sha256 = "18wwfbbggsjrd4w3dczxa2gv3zvx0fqp68b8h1zzvdbyn91f16mz";
};
2017-06-26 02:46:06 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ perl zlib bzip2 popt ];
2018-05-10 18:08:07 +01:00
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
2015-03-26 23:52:41 +00:00
meta = with stdenv.lib; {
2020-04-09 06:04:22 +01:00
homepage = "http://librsync.sourceforge.net/";
2015-03-26 23:52:41 +00:00
license = licenses.lgpl2Plus;
description = "Implementation of the rsync remote-delta algorithm";
2015-03-26 23:52:41 +00:00
platforms = platforms.unix;
};
}