mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
seasocks: init at 1.4.2
This commit is contained in:
parent
66a1daba7a
commit
d41814dd00
@ -1687,6 +1687,11 @@
|
||||
github = "fps";
|
||||
name = "Florian Paul Schmidt";
|
||||
};
|
||||
fredeb = {
|
||||
email = "im@fredeb.dev";
|
||||
github = "fredeeb";
|
||||
name = "Frede Emil";
|
||||
};
|
||||
freepotion = {
|
||||
email = "freepotion@protonmail.com";
|
||||
github = "freepotion";
|
||||
|
24
pkgs/development/libraries/seasocks/default.nix
Normal file
24
pkgs/development/libraries/seasocks/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, python, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "seasocks";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mattgodbolt";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1vzdhp61bq2bddz7kkpygdq5adxdspjw1q6a03j6qyyimapblrg8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ zlib python ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mattgodbolt/seasocks;
|
||||
description = "Tiny embeddable C++ HTTP and WebSocket server";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ fredeb ];
|
||||
};
|
||||
}
|
@ -12793,6 +12793,8 @@ in
|
||||
|
||||
selinux-sandbox = callPackage ../os-specific/linux/selinux-sandbox { };
|
||||
|
||||
seasocks = callPackage ../development/libraries/seasocks { };
|
||||
|
||||
serd = callPackage ../development/libraries/serd {};
|
||||
|
||||
serf = callPackage ../development/libraries/serf {};
|
||||
|
Loading…
Reference in New Issue
Block a user