mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
85f60cbeb0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libwebsockets/versions
29 lines
810 B
Nix
29 lines
810 B
Nix
{ fetchFromGitHub, stdenv, cmake, openssl, zlib, libuv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libwebsockets-${version}";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "warmcat";
|
|
repo = "libwebsockets";
|
|
rev = "v${version}";
|
|
sha256 = "1x3qrz2hqsrv2lg0y9irdx37c8r9j9vf9mwzgw61znzvk6hc9ymq";
|
|
};
|
|
|
|
buildInputs = [ cmake openssl zlib libuv ];
|
|
cmakeFlags = [ "-DLWS_WITH_PLUGINS=ON" ];
|
|
|
|
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://libwebsockets.org;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|