libwebsockets: 1.4 -> 2.3.0

wip/yesman
volth 7 years ago committed by Jörg Thalheim
parent 28a53c8a08
commit 4916f64948
  1. 19
      pkgs/development/libraries/libwebsockets/default.nix

@ -1,15 +1,19 @@
{ fetchgit, stdenv, cmake, openssl, zlib }:
{ fetchFromGitHub, stdenv, cmake, openssl, zlib, libuv }:
stdenv.mkDerivation rec {
name = "libwebsockets-1.4";
name = "libwebsockets-${version}";
version = "2.3.0";
src = fetchgit {
url = "git://git.libwebsockets.org/libwebsockets";
rev = "16fb0132cec0fcced29bce6d86eaf94a9beb9785";
sha256 = "0gk4dgx125nz7wl59bx0kgxxg261r9kyxvdff5ld98slr9f08d0l";
src = fetchFromGitHub {
owner = "warmcat";
repo = "libwebsockets";
rev = "v${version}";
sha256 = "1hv2b5r6sg42xnqhm4ysjvyiz3cqpfmwaqm33vpbx0k7arj4ixvy";
};
buildInputs = [ cmake openssl zlib ];
propagatedBuildInputs = [ libuv ];
cmakeFlags = [ "-DLWS_WITH_PLUGINS=ON" ];
meta = {
description = "Light, portable C library for websockets";
@ -19,8 +23,7 @@ stdenv.mkDerivation rec {
throughput in both directions.
'';
homepage = https://libwebsockets.org/trac/libwebsockets;
# See http://git.libwebsockets.org/cgi-bin/cgit/libwebsockets/tree/LICENSE
license = stdenv.lib.licenses.gpl2Plus;
license = stdenv.lib.licenses.lgpl;
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
};

Loading…
Cancel
Save