Merge pull request #133139 from marsam/update-raft-canonical

raft-canonical: 0.10.1 -> 0.11.2
This commit is contained in:
Sandro 2021-08-08 19:14:30 +02:00 committed by GitHub
commit 781482a3cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4 }:
stdenv.mkDerivation rec {
pname = "raft-canonical";
version = "0.10.1";
version = "0.11.2";
src = fetchFromGitHub {
owner = "canonical";
repo = "raft";
rev = "v${version}";
sha256 = "sha256-Q4m0CCIArgsobhmhqLvkr7fK40SX/qBk6K5Qu0eRLaI=";
sha256 = "050dwy34jh8dihfwfm0r1by2i3sy9crapipp9idw32idm79y4izb";
};
nativeBuildInputs = [ autoreconfHook file pkg-config ];
buildInputs = [ libuv ];
buildInputs = [ libuv lz4 ];
enableParallelBuilding = true;
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/canonical/raft";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ wucke13 ];
};
}