lol

websocketpp: 0.8.1 -> 0.8.2

+3 -3
+3 -3
pkgs/development/libraries/websocket++/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "websocket++"; 5 - version = "0.8.1"; 5 + version = "0.8.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zaphoyd"; 9 9 repo = "websocketpp"; 10 10 rev = version; 11 - sha256 = "12ffczcrryh74c1xssww35ic6yiy2l2xgdd30lshiq9wnzl2brgy"; 11 + sha256 = "sha256-9fIwouthv2GcmBe/UPvV7Xn9P2o0Kmn2hCI4jCh0hPM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; ··· 18 18 description = "C++/Boost Asio based websocket client/server library"; 19 19 license = licenses.bsd3; 20 20 platforms = platforms.unix; 21 - maintainers = with maintainers; [ ]; 21 + maintainers = with maintainers; [ revol-xut ]; 22 22 }; 23 23 }