nixpkgs/pkgs/development/tools/database/webdis/default.nix

29 lines
719 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, hiredis, http-parser, jansson, libevent, fetchpatch }:
stdenv.mkDerivation rec {
pname = "webdis";
2020-07-07 22:31:50 +01:00
version = "0.1.11";
src = fetchFromGitHub {
owner = "nicolasff";
repo = pname;
rev = version;
2020-07-07 22:31:50 +01:00
sha256 = "162xbx4dhfx4a6sksm7x60gr7ylyila4vidmdf0bn7xlvglggazf";
};
buildInputs = [ hiredis http-parser jansson libevent ];
makeFlags = [
"PREFIX=${placeholder "out"}"
"CONFDIR=${placeholder "out"}/share/webdis"
];
meta = with stdenv.lib; {
description = "A Redis HTTP interface with JSON output";
homepage = "https://webd.is/";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ wucke13 ];
};
}