spdlog: fix path in pkg-config file

main
Artturin 2 years ago
parent 9d05c94462
commit 2d03092f09
  1. 9
      pkgs/development/libraries/spdlog/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, fmt_8
{ lib, stdenv, fetchFromGitHub, cmake, fmt_8, fetchpatch
, staticBuild ? stdenv.hostPlatform.isStatic
}:
@ -15,6 +15,13 @@ let
inherit sha256;
};
# in master post 1.10.0, see https://github.com/gabime/spdlog/issues/2380
patches = lib.optional (lib.versionAtLeast version "1.4.1") (fetchpatch {
name = "fix-pkg-config.patch";
url = "https://github.com/gabime/spdlog/commit/afb69071d5346b84e38fbcb0c8c32eddfef02a55.patch";
sha256 = "0cab2bbv8zyfhrhfvcyfwf5p2fddlq5hs2maampn5w18f6jhvk6q";
});
nativeBuildInputs = [ cmake ];
# spdlog <1.3 uses a bundled version of fmt
propagatedBuildInputs = lib.optional (lib.versionAtLeast version "1.3") fmt_8;

Loading…
Cancel
Save