f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
544 B
Nix
23 lines
544 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "websocket++-${version}";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zaphoyd";
|
|
repo = "websocketpp";
|
|
rev = version;
|
|
sha256 = "1n6j0dh3qpis0f7crd49a2nhxd5459h0blch408z3kwlasx2g0i5";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
homepage = http://www.zaphoyd.com/websocketpp/;
|
|
description = "C++/Boost Asio based websocket client/server library";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|