3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #84776 from r-ryantm/auto-update/librsync

librsync: 2.2.1 -> 2.3.0
This commit is contained in:
Mario Rodas 2020-04-09 11:49:35 -05:00 committed by GitHub
commit 74bedf27a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "librsync";
version = "2.2.1";
version = "2.3.0";
src = fetchFromGitHub {
owner = "librsync";
repo = "librsync";
rev = "v${version}";
sha256 = "08wdlxsa9zg2pyasz1lwg70d5psi4amv81v4yxwffx67ndzb9yp5";
sha256 = "18wwfbbggsjrd4w3dczxa2gv3zvx0fqp68b8h1zzvdbyn91f16mz";
};
nativeBuildInputs = [ cmake ];
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
meta = with stdenv.lib; {
homepage = http://librsync.sourceforge.net/;
homepage = "http://librsync.sourceforge.net/";
license = licenses.lgpl2Plus;
description = "Implementation of the rsync remote-delta algorithm";
platforms = platforms.unix;