redis-plus-plus: 1.3.7 -> 1.3.10

https://github.com/sewenew/redis-plus-plus/releases/tag/1.3.8
https://github.com/sewenew/redis-plus-plus/releases/tag/1.3.9
https://github.com/sewenew/redis-plus-plus/releases/tag/1.3.10

+20 -2
+14
pkgs/development/libraries/redis-plus-plus/0001-Fix-pkg-config-paths.patch
··· 1 + diff --git a/cmake/redis++.pc.in b/cmake/redis++.pc.in 2 + index c98b990..46849b6 100644 3 + --- a/cmake/redis++.pc.in 4 + +++ b/cmake/redis++.pc.in 5 + @@ -1,7 +1,5 @@ 6 + -prefix=@CMAKE_INSTALL_PREFIX@ 7 + -exec_prefix=${prefix} 8 + -libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@ 9 + -includedir=${prefix}/include 10 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 11 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 12 + 13 + Name: redis++ 14 + Description: This is a Redis client, based on hiredis and written in C++11. It supports scritpting, pub/sub, pipeline, transaction, Redis Cluster, Redis Sentinel, connection pool, ACL, SSL and thread safety.
+6 -2
pkgs/development/libraries/redis-plus-plus/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "redis-plus-plus"; 11 - version = "1.3.7"; 11 + version = "1.3.10"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sewenew"; 15 15 repo = "redis-plus-plus"; 16 16 rev = version; 17 - sha256 = "sha256-QCNN85syxw2EGPdyTV3bL0txcHl7t2YhsKwK9lgnexY="; 17 + sha256 = "sha256-lupS4WoJ4r0Vsh3sEGSuka0TtEBo2FPX2eks2blqRGk="; 18 18 }; 19 + 20 + patches = [ 21 + ./0001-Fix-pkg-config-paths.patch 22 + ]; 19 23 20 24 nativeBuildInputs = [ cmake ]; 21 25 propagatedBuildInputs = [ hiredis ];