Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 710 B view raw
1diff --git a/app/app.pro b/app/app.pro 2index 89ff5c0b..9625ecd1 100644 3--- a/app/app.pro 4+++ b/app/app.pro 5@@ -159,12 +159,13 @@ macx { 6 7 } else:unix { 8 # pkgconfig-based configuration does not work @ Ubuntu 9- # CONFIG += link_pkgconfig 10- # PKGCONFIG += hunspell 11+ # but does on NixOS 12+ CONFIG += link_pkgconfig 13+ PKGCONFIG += hunspell 14 15- # hardcoded paths are (unfortunately) more robust: 16- INCLUDEPATH += /usr/include/hunspell 17- LIBS += -lhunspell 18+ # Where hardcoded paths are (unfortunately) more robust^W^W^W^Wannoying: 19+ # INCLUDEPATH += /usr/include/hunspell 20+ # LIBS += -lhunspell 21 22 HEADERS += \ 23 ./src/qt/spelling/dictionary_provider_hunspell.h \