3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #141090 from fabaff/bump-libwebsockets

This commit is contained in:
Sandro 2021-11-15 17:43:44 +01:00 committed by GitHub
commit 4fcf6aa12e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

View file

@ -1,4 +1,11 @@
{ fetchFromGitHub, lib, stdenv, cmake, openssl, zlib, libuv }:
{ lib
, stdenv
, fetchFromGitHub
, cmake
, openssl
, zlib
, libuv
}:
let
generic = { version, sha256 }: stdenv.mkDerivation rec {
@ -64,4 +71,9 @@ in {
version = "4.2.1";
sha256 = "sha256-C+WGfNF4tAgbp/7aRraBgjNOe4I5ihm+8CGelXzfxbU=";
};
libwebsockets_4_3 = generic {
version = "4.3.0";
sha256 = "13lxb487mqlzbsbv6fbj50r1717mfwdy87ps592lgfy3307yqpr4";
};
}

View file

@ -7315,8 +7315,9 @@ with pkgs;
inherit (callPackages ../development/libraries/libwebsockets { })
libwebsockets_3_1
libwebsockets_3_2
libwebsockets_4_2;
libwebsockets = libwebsockets_4_2;
libwebsockets_4_2
libwebsockets_4_3;
libwebsockets = libwebsockets_4_3;
licensee = callPackage ../tools/package-management/licensee { };