Skip to content

Commit

Permalink
Merge pull request #84771 from r-ryantm/auto-update/fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Apr 24, 2020
2 parents b4d7725 + 08d634a commit 5e6adf7
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pkgs/development/libraries/fmt/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:

stdenv.mkDerivation rec {
pname = "fmt";
version = "6.1.2";
version = "6.2.0";

src = fetchFromGitHub {
owner = "fmtlib";
repo = "fmt";
rev = version;
sha256 = "1ngb2fd7c2jnxi3x5kjgxmpixmyc737f77vibij43dl77ybiaihi";
sha256 = "1vr08a8q94j66gas7ddbpdbq72b2ikd0mkgd5zd3l63610n8qajs";
};

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=";
})
];

outputs = [ "out" "dev" ];

nativeBuildInputs = [ cmake ];
Expand Down

0 comments on commit 5e6adf7

Please sign in to comment.