lol

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

raft-canonical: 0.10.1 -> 0.11.2

authored by

Sandro and committed by
GitHub
781482a3 9b0902c8

+5 -4
+5 -4
pkgs/development/libraries/raft-canonical/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "raft-canonical"; 5 - version = "0.10.1"; 5 + version = "0.11.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "canonical"; 9 9 repo = "raft"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Q4m0CCIArgsobhmhqLvkr7fK40SX/qBk6K5Qu0eRLaI="; 11 + sha256 = "050dwy34jh8dihfwfm0r1by2i3sy9crapipp9idw32idm79y4izb"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook file pkg-config ]; 15 - buildInputs = [ libuv ]; 15 + buildInputs = [ libuv lz4 ]; 16 16 17 17 enableParallelBuilding = true; 18 18 ··· 37 37 ''; 38 38 homepage = "https://github.com/canonical/raft"; 39 39 license = licenses.asl20; 40 + platforms = platforms.linux; 40 41 maintainers = with maintainers; [ wucke13 ]; 41 42 }; 42 43 }