libargs: fix path in pkg-config file
This commit is contained in:
parent
bb1d2fab3d
commit
d5ad233c15
1 changed files with 8 additions and 0 deletions
|
@ -13,6 +13,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
# https://github.com/Taywee/args/issues/108
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace CMakeLists.txt \
|
||||||
|
--replace '$'{CMAKE_INSTALL_LIBDIR_ARCHIND} '$'{CMAKE_INSTALL_LIBDIR}
|
||||||
|
substituteInPlace packaging/pkgconfig.pc.in \
|
||||||
|
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A simple header-only C++ argument parser library";
|
description = "A simple header-only C++ argument parser library";
|
||||||
homepage = "https://github.com/Taywee/args";
|
homepage = "https://github.com/Taywee/args";
|
||||||
|
|
Loading…
Reference in a new issue