2020-04-09 04:12:20 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:
|
2018-10-10 14:44:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fmt";
|
2020-04-09 04:12:20 +01:00
|
|
|
version = "6.2.0";
|
2018-10-28 08:56:44 +00:00
|
|
|
|
2018-10-10 14:44:48 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fmtlib";
|
|
|
|
repo = "fmt";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2020-04-09 04:12:20 +01:00
|
|
|
sha256 = "1vr08a8q94j66gas7ddbpdbq72b2ikd0mkgd5zd3l63610n8qajs";
|
2018-10-10 14:44:48 +01:00
|
|
|
};
|
2018-10-28 08:56:44 +00:00
|
|
|
|
2020-04-09 04:12:20 +01:00
|
|
|
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=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-10-28 08:56:44 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-10-10 14:44:48 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-10-28 08:56:44 +00:00
|
|
|
|
|
|
|
cmakeFlags = [
|
2020-02-28 13:17:10 +00:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF" # for tests
|
2018-10-28 08:56:44 +00:00
|
|
|
];
|
|
|
|
|
2018-10-10 14:44:48 +01:00
|
|
|
doCheck = true;
|
2018-10-28 08:56:44 +00:00
|
|
|
|
2018-10-10 14:44:48 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Small, safe and fast formatting library";
|
|
|
|
longDescription = ''
|
|
|
|
fmt (formerly cppformat) is an open-source formatting library. It can be
|
|
|
|
used as a fast and safe alternative to printf and IOStreams.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://fmtlib.net/";
|
|
|
|
downloadPage = "https://github.com/fmtlib/fmt/";
|
2018-10-10 14:44:48 +01:00
|
|
|
maintainers = [ maintainers.jdehaas ];
|
|
|
|
license = licenses.bsd2;
|
2018-10-28 08:56:44 +00:00
|
|
|
platforms = platforms.all;
|
2018-10-10 14:44:48 +01:00
|
|
|
};
|
|
|
|
}
|