fmtlib: add pkgconfig

* fmtlib: add pkgconfig (#48960)
This commit is contained in:
Cole Mickens 2018-11-19 14:02:21 -08:00 committed by Renaud
parent f9bb8fbbd2
commit 719feb8f55

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, enableShared ? true }:
{ stdenv, fetchFromGitHub, fetchpatch, cmake, enableShared ? true }:
stdenv.mkDerivation rec {
version = "5.2.1";
@ -11,6 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "1cd8yq8va457iir1hlf17ksx11fx2hlb8i4jml8gj1875pizm0pk";
};
patches = [
(fetchpatch {
url = "https://github.com/fmtlib/fmt/commit/9d0c9c4bb145a286f725cd38c90331eee7addc7f.patch";
sha256 = "1gy93mb1s1mq746kxj4c564k2mppqp5khqdfa6im88rv29cvrl4y";
})
];
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];