hiredis-vip: init at 0.3.0

This commit is contained in:
Frederik Rietdijk 2019-04-11 09:38:50 +02:00
parent 1a926b82a8
commit f6dcb5f70b
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv
, lib
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "hiredis-vip";
version = "0.3.0";
src = fetchFromGitHub {
owner = "vipshop";
repo = "hiredis-vip";
rev = version;
sha256 = "1z9zry635pxqv6d2cgk3dghb5qfpg9m7dz34ld4djw9b53hjr2z2";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "A C client library for the Redis database";
homepage = https://github.com/vipshop/hiredis-vip;
license = lib.licenses.bsd3;
};
}

View File

@ -10535,6 +10535,8 @@ in
hiredis = callPackage ../development/libraries/hiredis { };
hiredis-vip = callPackage ../development/libraries/hiredis-vip { };
hivex = callPackage ../development/libraries/hivex { };
hound = callPackage ../development/tools/misc/hound { };