Remove ca-derivations removeReferencesTo (#359318)

authored by John Ericson and committed by GitHub f38a03f4 00632ab3

+2 -13
+1 -5
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 19 , sndio 20 , libjack2 21 , speechd-minimal 22 - , removeReferencesTo 23 }: 24 25 ## configurability of the wrapper itself ··· 242 }; 243 })); 244 245 - nativeBuildInputs = [ makeWrapper lndir jq removeReferencesTo ]; 246 buildInputs = [ browser.gtk3 ]; 247 248 ··· 417 passthru = { unwrapped = browser; }; 418 419 disallowedRequisites = [ stdenv.cc ]; 420 - postInstall = '' 421 - find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' + 422 - ''; 423 meta = browser.meta // { 424 inherit (browser.meta) description; 425 mainProgram = launcherName;
··· 19 , sndio 20 , libjack2 21 , speechd-minimal 22 }: 23 24 ## configurability of the wrapper itself ··· 241 }; 242 })); 243 244 + nativeBuildInputs = [ makeWrapper lndir jq ]; 245 buildInputs = [ browser.gtk3 ]; 246 247 ··· 416 passthru = { unwrapped = browser; }; 417 418 disallowedRequisites = [ stdenv.cc ]; 419 meta = browser.meta // { 420 inherit (browser.meta) description; 421 mainProgram = launcherName;
+1 -3
pkgs/by-name/li/libwebsockets/package.nix
··· 5 , openssl 6 , zlib 7 , libuv 8 - , removeReferencesTo 9 # External poll is required for e.g. mosquitto, but discouraged by the maintainer. 10 , withExternalPoll ? false 11 }: ··· 25 26 buildInputs = [ openssl zlib libuv ]; 27 28 - nativeBuildInputs = [ cmake removeReferencesTo ]; 29 30 cmakeFlags = [ 31 "-DLWS_WITH_PLUGINS=ON" ··· 43 ); 44 45 postInstall = '' 46 - find "$out" -type f -exec remove-references-to -t ${stdenv.cc.cc} '{}' + 47 # Fix path that will be incorrect on move to "dev" output. 48 substituteInPlace "$out/lib/cmake/libwebsockets/LibwebsocketsTargets-release.cmake" \ 49 --replace "\''${_IMPORT_PREFIX}" "$out"
··· 5 , openssl 6 , zlib 7 , libuv 8 # External poll is required for e.g. mosquitto, but discouraged by the maintainer. 9 , withExternalPoll ? false 10 }: ··· 24 25 buildInputs = [ openssl zlib libuv ]; 26 27 + nativeBuildInputs = [ cmake ]; 28 29 cmakeFlags = [ 30 "-DLWS_WITH_PLUGINS=ON" ··· 42 ); 43 44 postInstall = '' 45 # Fix path that will be incorrect on move to "dev" output. 46 substituteInPlace "$out/lib/cmake/libwebsockets/LibwebsocketsTargets-release.cmake" \ 47 --replace "\''${_IMPORT_PREFIX}" "$out"
-5
pkgs/by-name/ne/neovim-unwrapped/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 - removeReferencesTo, 6 cmake, 7 gettext, 8 msgpack-c, ··· 163 cmake 164 gettext 165 pkg-config 166 - removeReferencesTo 167 ]; 168 169 # extra programs test via `make functionaltest` ··· 188 -e "s|\".*/bin/nvim|\${stdenv.hostPlatform.emulator buildPackages} &|g" 189 sed -i src/nvim/po/CMakeLists.txt \ 190 -e "s|\$<TARGET_FILE:nvim|\${stdenv.hostPlatform.emulator buildPackages} &|g" 191 - ''; 192 - postInstall = '' 193 - find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' + 194 ''; 195 # check that the above patching actually works 196 outputChecks =
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6 gettext, 7 msgpack-c, ··· 162 cmake 163 gettext 164 pkg-config 165 ]; 166 167 # extra programs test via `make functionaltest` ··· 186 -e "s|\".*/bin/nvim|\${stdenv.hostPlatform.emulator buildPackages} &|g" 187 sed -i src/nvim/po/CMakeLists.txt \ 188 -e "s|\$<TARGET_FILE:nvim|\${stdenv.hostPlatform.emulator buildPackages} &|g" 189 ''; 190 # check that the above patching actually works 191 outputChecks =