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

24 lines
559 B
Nix
Raw Normal View History

2015-04-19 07:13:56 +00:00
{ stdenv, fetchFromGitHub }:
2015-03-12 01:20:29 +00:00
stdenv.mkDerivation rec {
name = "hiredis-${version}";
2016-05-23 20:29:53 +00:00
version = "0.13.3";
2015-03-12 01:20:29 +00:00
2015-04-19 07:13:56 +00:00
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis";
rev = "v${version}";
2016-05-23 20:29:53 +00:00
sha256 = "1qxiv61bsp6s847hhkxqj7vnbdlac089r2qdp3zgxhhckaflhb7r";
2015-03-12 01:20:29 +00:00
};
PREFIX = "\${out}";
meta = with stdenv.lib; {
homepage = https://github.com/redis/hiredis;
description = "Minimalistic C client for Redis >= 1.2";
2015-04-21 16:05:19 +00:00
license = licenses.bsd3;
2015-03-12 01:20:29 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}