fluent-bit: 1.0.6 -> 1.3.2

This commit is contained in:
Mario Rodas 2019-10-29 04:20:00 -05:00 committed by Jon
parent c0343390ca
commit 3221b5f07c

View file

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, fetchFromGitHub, cmake, flex, bison }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "fluent-bit";
version = "1.0.6";
version = "1.3.2";
src = fetchFromGitHub {
owner = "fluent";
repo = "fluent-bit";
rev = "8cc3a1887c3fcd6dd95a4a475fb213a0e399c222";
sha256 = "0rmdbrhhrim80d0hwbz56d5f8rypm6h62ks3xnr0b4w987w10653";
rev = "v${version}";
sha256 = "155szha6mx7cvq0bzqb528zg4q1m9gip7f0m1zv9yrz1sr9p1nzv";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake flex bison ];
postPatch = ''
substituteInPlace src/CMakeLists.txt \