Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pkgs/development/libraries/fmt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -51,4 +51,9 @@ in
version = "8.1.1";
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
};

fmt_9 = generic {
version = "9.0.0";
sha256 = "sha256-nwlAzMkY1JdhLtes48VaNH9LS7GzqtPCwk2dZA/bGmQ=";
};
}
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17856,9 +17856,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 {};
Expand Down