nixpkgs/pkgs/development/libraries/hiredis/default.nix
R. RyanTM 136513655f hiredis: 0.13.3 -> 0.14.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/hiredis/versions
2018-10-03 11:41:55 -07:00

24 lines
559 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "hiredis-${version}";
version = "0.14.0";
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis";
rev = "v${version}";
sha256 = "0ik38lwpmm780jqrry95ckf6flmvd172444p3q8d1k9n99jwij9c";
};
PREFIX = "\${out}";
meta = with stdenv.lib; {
homepage = https://github.com/redis/hiredis;
description = "Minimalistic C client for Redis >= 1.2";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}