nixpkgs/pkgs/development/libraries/hiredis/default.nix

23 lines
498 B
Nix
Raw Normal View History

2015-04-19 00:13:56 -07:00
{ stdenv, fetchFromGitHub }:
2015-03-11 18:20:29 -07:00
stdenv.mkDerivation rec {
pname = "hiredis";
2020-03-22 09:51:52 -07:00
version = "0.14.1";
2015-03-11 18:20:29 -07:00
2015-04-19 00:13:56 -07:00
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis";
rev = "v${version}";
2020-03-22 09:51:52 -07:00
sha256 = "1r93ssniiv610pj6d78i1cngism0cdv2k8cmzy7jf9klf76jiwfq";
2015-03-11 18:20:29 -07:00
};
PREFIX = "\${out}";
meta = with stdenv.lib; {
2020-03-22 09:51:52 -07:00
homepage = "https://github.com/redis/hiredis";
2015-03-11 18:20:29 -07:00
description = "Minimalistic C client for Redis >= 1.2";
2015-04-21 09:05:19 -07:00
license = licenses.bsd3;
2015-03-11 18:20:29 -07:00
platforms = platforms.all;
};
}