1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/hiredis/default.nix

24 lines
559 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 {
name = "hiredis-${version}";
2015-05-06 17:42:50 +01:00
version = "0.13.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}";
2015-05-06 17:42:50 +01:00
sha256 = "15rzq7n7z9h143smrnd34f9gh24swwal6r9z9xlxsl0jxabiv71l";
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 17:05:19 +01:00
license = licenses.bsd3;
2015-03-12 01:20:29 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}