Merge pull request #130732 from SuperSandro2000/SuperSandro2000-patch-1
libwebsockets: cleanup
This commit is contained in:
commit
667cd565a5
1 changed files with 6 additions and 2 deletions
|
@ -26,8 +26,12 @@ let
|
|||
|
||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-Wno-error=unused-but-set-variable";
|
||||
|
||||
postInstall = "rm -rf ${placeholder "out"}/share/libwebsockets-test-server";
|
||||
disallowedReferences = [ stdenv.cc.cc ]; # $out/share/libwebsockets-test-server/plugins/libprotocol_*.so refers to crtbeginS.o
|
||||
postInstall = ''
|
||||
rm -r ${placeholder "out"}/share/libwebsockets-test-server
|
||||
'';
|
||||
|
||||
# $out/share/libwebsockets-test-server/plugins/libprotocol_*.so refers to crtbeginS.o
|
||||
disallowedReferences = [ stdenv.cc.cc ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Light, portable C library for websockets";
|
||||
|
|
Loading…
Reference in a new issue