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

25 lines
629 B
Nix
Raw Normal View History

2020-02-24 20:28:00 +00:00
{ stdenv, fetchFromGitHub, cmake, python, zlib }:
2019-04-21 14:21:39 +00:00
stdenv.mkDerivation rec {
pname = "seasocks";
2020-01-26 11:05:21 +00:00
version = "1.4.3";
2019-04-21 14:21:39 +00:00
src = fetchFromGitHub {
owner = "mattgodbolt";
repo = pname;
rev = "v${version}";
2020-01-26 11:05:21 +00:00
sha256 = "1c2gc0k9wgbgn7y7wmq2ylp0gvdbmagc1x8c4jwbsncl1gy6x4g2";
2019-04-21 14:21:39 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python ];
meta = with stdenv.lib; {
homepage = "https://github.com/mattgodbolt/seasocks";
2019-04-21 14:21:39 +00:00
description = "Tiny embeddable C++ HTTP and WebSocket server";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ fredeb ];
};
}