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

23 lines
495 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-03-12 01:20:29 +00:00
stdenv.mkDerivation rec {
pname = "hiredis";
version = "1.0.2";
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}";
sha256 = "0a55zk3qrw9yl27i87h3brg2hskmmzbfda77dhq9a4if7y70xnfb";
2015-03-12 01:20:29 +00:00
};
PREFIX = "\${out}";
meta = with 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;
};
}