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

23 lines
498 B
Nix
Raw Normal View History

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