lol

cxxopts: fix path in pkg-config file

authored by

Alexander Shpilkin and committed by
Artturin
4f047072 23fa3f2f

+6
+6
pkgs/development/libraries/cxxopts/default.nix
··· 31 31 # Conflict on case-insensitive filesystems. 32 32 dontUseCmakeBuildDir = true; 33 33 34 + # https://github.com/jarro2783/cxxopts/issues/332 35 + postPatch = '' 36 + substituteInPlace packaging/pkgconfig.pc.in \ 37 + --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ 38 + ''; 39 + 34 40 meta = with lib; { 35 41 homepage = "https://github.com/jarro2783/cxxopts"; 36 42 description = "Lightweight C++ GNU-style option parser library";