Merge pull request #187482 from panicgh/bump-fmt

fmt_9: init at 9.0.0
This commit is contained in:
Pascal Bach 2022-09-02 23:37:22 +02:00 committed by GitHub
commit 56603378ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -33,7 +33,7 @@ let
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/";
homepage = "https://fmt.dev/";
downloadPage = "https://github.com/fmtlib/fmt/";
maintainers = [ maintainers.jdehaas ];
license = licenses.mit;
@ -51,4 +51,9 @@ in
version = "8.1.1";
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
};
fmt_9 = generic {
version = "9.0.0";
sha256 = "sha256-nwlAzMkY1JdhLtes48VaNH9LS7GzqtPCwk2dZA/bGmQ=";
};
}

View file

@ -18015,9 +18015,10 @@ with pkgs;
flyway = callPackage ../development/tools/flyway { };
inherit (callPackages ../development/libraries/fmt { }) fmt_7 fmt_8;
inherit (callPackages ../development/libraries/fmt { }) fmt_7 fmt_8 fmt_9;
fmt = fmt_7;
fmt_latest = fmt_9;
fplll = callPackage ../development/libraries/fplll {};
fplll_20160331 = callPackage ../development/libraries/fplll/20160331.nix {};