mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
627 B
Nix
25 lines
627 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, python, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seasocks";
|
|
version = "1.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mattgodbolt";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1f9a3mx3yjmr5qry4rc1c7mrx3348iifxm7d8sj8yd41kqnzmfv4";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ zlib python ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|