fmt: 6.1.2 -> 6.2.0

This commit is contained in:
R. RyanTM 2020-04-09 03:12:20 +00:00 committed by Jan Tojnar
parent 22a3bf9fb9
commit 08d634a7a0
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,16 +1,26 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:
stdenv.mkDerivation rec {
pname = "fmt";
version = "6.1.2";
version = "6.2.0";
src = fetchFromGitHub {
owner = "fmtlib";
repo = "fmt";
rev = version;
sha256 = "1ngb2fd7c2jnxi3x5kjgxmpixmyc737f77vibij43dl77ybiaihi";
sha256 = "1vr08a8q94j66gas7ddbpdbq72b2ikd0mkgd5zd3l63610n8qajs";
};
patches = [
# Fix BC break breaking Kodi
# https://github.com/xbmc/xbmc/issues/17629
# https://github.com/fmtlib/fmt/issues/1620
(fetchpatch {
url = "https://github.com/fmtlib/fmt/commit/7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch";
sha256 = "vdttRGgdltabeRAs4/z0BNtW2dLOhCxtXQFGVFKpEG0=";
})
];
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];