tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
websocketpp: 0.8.1 -> 0.8.2
revol-xut
3 years ago
554f5f5e
47fdcc04
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
websocket++
default.nix
+3
-3
pkgs/development/libraries/websocket++/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "websocket++";
5
5
-
version = "0.8.1";
5
5
+
version = "0.8.2";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "zaphoyd";
9
9
repo = "websocketpp";
10
10
rev = version;
11
11
-
sha256 = "12ffczcrryh74c1xssww35ic6yiy2l2xgdd30lshiq9wnzl2brgy";
11
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
21
-
maintainers = with maintainers; [ ];
21
21
+
maintainers = with maintainers; [ revol-xut ];
22
22
};
23
23
}