nixpkgs/pkgs/development/libraries/libwebsockets/default.nix

29 lines
825 B
Nix
Raw Normal View History

2017-09-19 13:38:39 +00:00
{ fetchFromGitHub, stdenv, cmake, openssl, zlib, libuv }:
2015-09-13 18:49:13 +00:00
stdenv.mkDerivation rec {
2017-09-19 13:38:39 +00:00
name = "libwebsockets-${version}";
version = "3.1.0";
2015-09-13 18:49:13 +00:00
2017-09-19 13:38:39 +00:00
src = fetchFromGitHub {
owner = "warmcat";
repo = "libwebsockets";
rev = "v${version}";
sha256 = "1w1wz6snf3cmcpa3f4dci2nz9za2f5rrylxl109id7bcb36xhbdl";
2015-09-13 18:49:13 +00:00
};
buildInputs = [ cmake openssl zlib libuv ];
2017-09-19 13:38:39 +00:00
cmakeFlags = [ "-DLWS_WITH_PLUGINS=ON" ];
2015-09-13 18:49:13 +00:00
meta = {
description = "Light, portable C library for websockets";
longDescription = ''
Libwebsockets is a lightweight pure C library built to
use minimal CPU and memory resources, and provide fast
throughput in both directions.
'';
homepage = https://github.com/warmcat/libwebsockets;
2017-09-19 20:14:42 +00:00
license = stdenv.lib.licenses.lgpl21;
2015-09-13 18:49:13 +00:00
platforms = stdenv.lib.platforms.all;
};
}