nixpkgs-suyu/pkgs/development/libraries/fmt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake
, enableShared ? !stdenv.hostPlatform.isStatic
}:
2020-10-23 15:39:26 +02:00
let
generic = { version, sha256, patches ? [ ] }:
stdenv.mkDerivation {
pname = "fmt";
inherit version;
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;
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";
};
2021-07-07 03:08:35 +02:00
fmt_8 = generic {
version = "8.1.1";
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
2021-07-07 03:08:35 +02:00
};
}