libwebsockets: 4.3.1 -> 4.3.2

Drop the upstreamed patch that was required for fixing ttyd.
Changes: https://github.com/warmcat/libwebsockets/compare/v4.3.1...v4.3.2

+4 -13
+4 -13
pkgs/development/libraries/libwebsockets/default.nix
··· 5 5 , openssl 6 6 , zlib 7 7 , libuv 8 - , fetchpatch 9 8 # External poll is required for e.g. mosquitto, but discouraged by the maintainer. 10 9 , withExternalPoll ? false 11 10 }: 12 11 13 12 let 14 - generic = { version, sha256, patches ? [] }: stdenv.mkDerivation rec { 13 + generic = { version, hash, patches ? [] }: stdenv.mkDerivation rec { 15 14 pname = "libwebsockets"; 16 15 inherit version; 17 16 ··· 19 18 owner = "warmcat"; 20 19 repo = "libwebsockets"; 21 20 rev = "v${version}"; 22 - inherit sha256; 21 + inherit hash; 23 22 }; 24 23 25 24 inherit patches; ··· 63 62 64 63 in { 65 64 libwebsockets_4_3 = generic { 66 - version = "4.3.1"; 67 - sha256 = "sha256-lB3JHh058cQc5rycLnHk3JAOgtku0nRCixN5U6lPKq8="; 68 - patches = [ 69 - # fixes the propagated cmake files, fixing the build of ttyd 70 - # see also https://github.com/tsl0922/ttyd/issues/918 71 - (fetchpatch { 72 - url = "https://github.com/warmcat/libwebsockets/commit/99a8b9c4422bed45c8b7412a1e121056f2a6132a.patch"; 73 - hash = "sha256-zHBo2ZEayvibM+jzeVaZqySxghaOLUglpSFwuGhl6HM="; 74 - }) 75 - ]; 65 + version = "4.3.2"; 66 + hash = "sha256-why8LAcc4XN0JdTJ1JoNWijKENL5mOHBsi9K4wpYr2c="; 76 67 }; 77 68 }