summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-07-30 17:17:27 +0100
committerGitHub <noreply@github.com>2022-07-30 17:17:27 +0100
commit0feaf204c45ace341f929f0400210e7b0c597488 (patch)
tree29f2551dc29ba1c2fb008ce0782be4e85d917a8a /pkgs/development/libraries
parent018b859903d2030db5df287734c40bd0225dd94b (diff)
parent096731dbb6f8f9dfb0b638a14a82b0f42dc40dc0 (diff)
downloadnixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar.gz
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar.bz2
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar.lz
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar.xz
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.tar.zst
nixpkgs-0feaf204c45ace341f929f0400210e7b0c597488.zip
Merge pull request #183794 from r-ryantm/auto-update/redis-plus-plus
redis-plus-plus: 1.3.3 -> 1.3.5
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/redis-plus-plus/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/redis-plus-plus/default.nix b/pkgs/development/libraries/redis-plus-plus/default.nix
index a39a9b185dc..7d3d7d48671 100644
--- a/pkgs/development/libraries/redis-plus-plus/default.nix
+++ b/pkgs/development/libraries/redis-plus-plus/default.nix
@@ -8,13 +8,13 @@ assert enableShared || enableStatic;
 
 stdenv.mkDerivation rec {
   pname = "redis-plus-plus";
-  version = "1.3.3";
+  version = "1.3.5";
 
   src = fetchFromGitHub {
     owner = "sewenew";
     repo = "redis-plus-plus";
     rev = version;
-    sha256 = "sha256-k4q5YbbbKKHXcL0nndzJPshzXS20ARz4Tdy5cBg7kMc=";
+    sha256 = "sha256-5tjadh3Ku7lrJn4tbi8TjTH6N0+QB2ER9xuO51cK/LU=";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/sewenew/redis-plus-plus";
     description = "Redis client written in C++";
     license = licenses.asl20;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ wheelsandmetal ];
   };
 }