websocketpp: 0.8.1 -> 0.8.2

This commit is contained in:
revol-xut 2022-08-13 18:29:17 +02:00
parent 47fdcc0400
commit 554f5f5edf
No known key found for this signature in database
GPG Key ID: 4F56FF7759627D07

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "websocket++"; pname = "websocket++";
version = "0.8.1"; version = "0.8.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zaphoyd"; owner = "zaphoyd";
repo = "websocketpp"; repo = "websocketpp";
rev = version; rev = version;
sha256 = "12ffczcrryh74c1xssww35ic6yiy2l2xgdd30lshiq9wnzl2brgy"; sha256 = "sha256-9fIwouthv2GcmBe/UPvV7Xn9P2o0Kmn2hCI4jCh0hPM=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "C++/Boost Asio based websocket client/server library"; description = "C++/Boost Asio based websocket client/server library";
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ revol-xut ];
}; };
} }