spdlog: 1.8.5 -> 1.9.2

main
Artturin 3 years ago
parent ea5c3d756e
commit f06cec9564
  1. 8
      pkgs/development/libraries/spdlog/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, fmt }:
{ lib, stdenv, fetchFromGitHub, cmake, fmt_8 }:
let
generic = { version, sha256 }:
@ -15,7 +15,7 @@ let
nativeBuildInputs = [ cmake ];
# spdlog <1.3 uses a bundled version of fmt
propagatedBuildInputs = lib.optional (lib.versionAtLeast version "1.3") fmt;
propagatedBuildInputs = lib.optional (lib.versionAtLeast version "1.3") fmt_8;
cmakeFlags = [
"-DSPDLOG_BUILD_SHARED=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
@ -49,8 +49,8 @@ let
in
{
spdlog_1 = generic {
version = "1.8.5";
sha256 = "sha256-D29jvDZQhPscaOHlrzGN1s7/mXlcsovjbqYpXd7OM50=";
version = "1.9.2";
sha256 = "sha256-GSUdHtvV/97RyDKy8i+ticnSlQCubGGWHg4Oo+YAr8Y=";
};
spdlog_0 = generic {

Loading…
Cancel
Save