mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
hiredis-vip: init at 0.3.0
This commit is contained in:
parent
1a926b82a8
commit
f6dcb5f70b
25
pkgs/development/libraries/hiredis-vip/default.nix
Normal file
25
pkgs/development/libraries/hiredis-vip/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user