Merge pull request #111355 from fabaff/libwebsockets

authored by

Sandro and committed by
GitHub
9e81867a 93519c77

+12 -4
+10 -3
pkgs/development/libraries/libwebsockets/default.nix
··· 32 32 throughput in both directions. 33 33 ''; 34 34 homepage = "https://libwebsockets.org/"; 35 - license = licenses.lgpl21; 35 + # Relicensed from LGPLv2.1+ to MIT with 4.0. Licensing situation 36 + # is tricky, see https://github.com/warmcat/libwebsockets/blob/main/LICENSE 37 + license = with licenses; [ mit publicDomain bsd3 asl20 ]; 36 38 platforms = platforms.all; 37 39 }; 38 40 }; ··· 50 52 }; 51 53 52 54 libwebsockets_4_0 = generic { 53 - version = "4.0.1"; 54 - sha256 = "1pf7km0w5q7dqlwcwqizdpfqgg10prfq8g2c093f5nghwsfv8mmf"; 55 + version = "4.0.21"; 56 + sha256 = "01k05x4711ngin598jr9dag4ml3m7hi6pkgr4dsb02ryh1kc6146"; 57 + }; 58 + 59 + libwebsockets_4_1 = generic { 60 + version = "4.1.6"; 61 + sha256 = "0x56v4hsx92vm1zibfmnqb5g3v23kzciffn3fjlsc3sly2pknhsg"; 55 62 }; 56 63 }
+2 -1
pkgs/top-level/all-packages.nix
··· 5954 5954 inherit (callPackages ../development/libraries/libwebsockets { }) 5955 5955 libwebsockets_3_1 5956 5956 libwebsockets_3_2 5957 - libwebsockets_4_0; 5957 + libwebsockets_4_0 5958 + libwebsockets_4_1; 5958 5959 libwebsockets = libwebsockets_3_2; 5959 5960 5960 5961 licensee = callPackage ../tools/package-management/licensee { };