My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/hiredis-vip/default.nix

25 lines
487 B

{ 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;
};
}