about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-09 05:04:22 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-04-09 05:04:22 +0000
commit19888d1f9473295df52c18488d44f8c41126da12 (patch)
treeca77f20be891b9831f8839231beda411afb727ec /pkgs/development
parente50c67ad7eefa8e77436fbd0366b69638b1c8713 (diff)
downloadnixlib-19888d1f9473295df52c18488d44f8c41126da12.tar
nixlib-19888d1f9473295df52c18488d44f8c41126da12.tar.gz
nixlib-19888d1f9473295df52c18488d44f8c41126da12.tar.bz2
nixlib-19888d1f9473295df52c18488d44f8c41126da12.tar.lz
nixlib-19888d1f9473295df52c18488d44f8c41126da12.tar.xz
nixlib-19888d1f9473295df52c18488d44f8c41126da12.tar.zst
nixlib-19888d1f9473295df52c18488d44f8c41126da12.zip
librsync: 2.2.1 -> 2.3.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/librsync/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/librsync/default.nix b/pkgs/development/libraries/librsync/default.nix
index 02a8abb7c856..d90106f89d81 100644
--- a/pkgs/development/libraries/librsync/default.nix
+++ b/pkgs/development/libraries/librsync/default.nix
@@ -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;