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

32 lines
864 B
Nix
Raw Normal View History

2020-01-19 21:33:36 +00:00
{ stdenv, fetchFromGitHub, cmake, python, zlib, fetchpatch }:
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
};
2020-01-19 21:33:36 +00:00
patches = [
(fetchpatch {
url = "https://github.com/mattgodbolt/seasocks/commit/5753b50ce3b2232d166843450043f88a4a362422.patch";
sha256 = "1c20xjma8jdgcr5m321srpmys6b4jvqkazfqr668km3r2ck5xncl";
})
];
2019-04-21 14:21:39 +00:00
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 ];
};
}