···2727 wayland qtwayland
2828 ];
2929 outputs = [ "out" "dev" ];
3030- # We need the RPATH for linking, because the `libkdeinit5_dolphin.so` links
3131- # private against its dependencies and without the correct RPATH, these
3232- # dependencies are not found.
3333- cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
3430}
···6161 CXXFLAGS = [
6262 ''-DNIXPKGS_XWAYLAND=\"${lib.getBin xwayland}/bin/Xwayland\"''
6363 ];
6464- cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
6564 postInstall = ''
6665 # Some package(s) refer to these service types by the wrong name.
6766 # I would prefer to patch those packages, but I cannot find them!
···17171818 cmakeFlags = [
1919 "-DBUILD_SHARED_LIBS=ON"
2020- # Mak CMake place RPATHs such that tests will find the built libraries.
2121- # See https://github.com/NixOS/nixpkgs/pull/144561#discussion_r742468811 and https://github.com/NixOS/nixpkgs/pull/108496
2222- "-DCMAKE_SKIP_BUILD_RPATH=OFF"
2320 ];
24212522 # TODO: Re-enable Darwin tests once we're on a release that has https://github.com/google/glog/issues/709#issuecomment-960381653 fixed
···108108 "-DTCAM_INTERNAL_ARAVIS=OFF"
109109 "-DTCAM_ARAVIS_USB_VISION=${if withAravis && withAravisUsbVision then "ON" else "OFF"}"
110110 "-DTCAM_INSTALL_FORCE_PREFIX=ON"
111111- # There are gobject introspection commands launched as part of the build. Those have a runtime
112112- # dependency on `libtcam` (which itself is built as part of this build). In order to allow
113113- # that, we set the dynamic linker's path to point on the build time location of the library.
114114- "-DCMAKE_SKIP_BUILD_RPATH=OFF"
115111 ];
116112117113 doCheck = true;
-1
pkgs/servers/sql/mysql/5.7.x.nix
···3131 outputs = [ "out" "static" ];
32323333 cmakeFlags = [
3434- "-DCMAKE_SKIP_BUILD_RPATH=OFF" # To run libmysql/libmysql_api_test during build.
3534 "-DWITH_SSL=yes"
3635 "-DWITH_EMBEDDED_SERVER=yes"
3736 "-DWITH_UNIT_TESTS=no"
-1
pkgs/servers/sql/mysql/8.0.x.nix
···3434 outputs = [ "out" "static" ];
35353636 cmakeFlags = [
3737- "-DCMAKE_SKIP_BUILD_RPATH=OFF" # To run libmysql/libmysql_api_test during build.
3837 "-DFORCE_UNSUPPORTED_COMPILER=1" # To configure on Darwin.
3938 "-DWITH_ROUTER=OFF" # It may be packaged separately.
4039 "-DWITH_SYSTEM_LIBS=ON"
-1
pkgs/tools/backup/percona-xtrabackup/generic.nix
···4545 "-DWITH_ZLIB=system"
4646 "-DWITH_VALGRIND=ON"
4747 "-DWITH_MAN_PAGES=OFF"
4848- "-DCMAKE_SKIP_BUILD_RPATH=OFF" # To run libmysql/libmysql_api_test during build.
4948 ];
50495150 postInstall = ''
-5
pkgs/tools/security/yubihsm-shell/default.nix
···3838 openssl
3939 ];
40404141- cmakeFlags = [
4242- # help2man fails without this
4343- "-DCMAKE_SKIP_BUILD_RPATH=OFF"
4444- ];
4545-4641 postPatch = ''
4742 # Can't find libyubihsm at runtime because of dlopen() in C code
4843 substituteInPlace lib/yubihsm.c \