2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake
|
2020-12-20 07:11:26 +01:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2018-10-10 15:44:48 +02:00
|
|
|
|
2020-10-23 15:39:26 +02:00
|
|
|
let
|
|
|
|
generic = { version, sha256, patches ? [ ] }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "fmt";
|
|
|
|
inherit version;
|
2018-10-28 09:56:44 +01:00
|
|
|
|
2020-10-23 15:39:26 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2020-05-01 19:54:51 +02:00
|
|
|
|
2020-10-23 15:39:26 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fmtlib";
|
|
|
|
repo = "fmt";
|
|
|
|
rev = version;
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=${if enableShared then "ON" else "OFF"}"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-10-23 15:39:26 +02:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = "http://fmtlib.net/";
|
|
|
|
downloadPage = "https://github.com/fmtlib/fmt/";
|
|
|
|
maintainers = [ maintainers.jdehaas ];
|
2021-02-15 00:23:42 +01:00
|
|
|
license = licenses.mit;
|
2020-10-23 15:39:26 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
fmt_7 = generic {
|
2020-11-26 04:56:32 +01:00
|
|
|
version = "7.1.3";
|
|
|
|
sha256 = "08hyv73qp2ndbs0isk8pspsphdzz5qh8czl3wgyxy3mmif9xdg29";
|
2018-10-10 15:44:48 +02:00
|
|
|
};
|
2021-07-07 03:08:35 +02:00
|
|
|
|
|
|
|
fmt_8 = generic {
|
2022-06-29 17:49:49 +02:00
|
|
|
version = "8.1.1";
|
|
|
|
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
|
2021-07-07 03:08:35 +02:00
|
|
|
};
|
2018-10-10 15:44:48 +02:00
|
|
|
}
|