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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
494 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-03-12 01:20:29 +00:00
stdenv.mkDerivation rec {
pname = "hiredis";
2022-11-19 02:45:32 +00:00
version = "1.1.0";
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}";
2022-11-19 02:45:32 +00:00
sha256 = "sha256-0ESRnZTL6/vMpek+2sb0YQU3ajXtzj14yvjfOSQYjf4=";
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 16:05:19 +00:00
license = licenses.bsd3;
2015-03-12 01:20:29 +00:00
platforms = platforms.all;
};
}