mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
wangle: init at 2023.01.30.00
Co-authored-by: Andrew Hamon <and.ham95@gmail.com>
This commit is contained in:
parent
6ee1413266
commit
51edb99f84
68
pkgs/development/libraries/wangle/default.nix
Normal file
68
pkgs/development/libraries/wangle/default.nix
Normal file
@ -0,0 +1,68 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, boost
|
||||
, libevent
|
||||
, double-conversion
|
||||
, glog
|
||||
, fmt_8
|
||||
, gflags
|
||||
, openssl
|
||||
, fizz
|
||||
, folly
|
||||
, gtest
|
||||
, libsodium
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wangle";
|
||||
version = "2023.01.30.00";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facebook";
|
||||
repo = "wangle";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-pHBFX9zs1vHXveZw9HCieRuQldLrq5fwJXWzNyLx1Kg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
cmakeDir = "../wangle";
|
||||
|
||||
cmakeFlags = [
|
||||
"-Wno-dev"
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
"-DBUILD_TESTS=off" # Tests fail on Darwin due to missing utimensat
|
||||
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
fmt_8
|
||||
libsodium
|
||||
zlib
|
||||
boost
|
||||
double-conversion
|
||||
fizz
|
||||
folly
|
||||
gtest
|
||||
glog
|
||||
gflags
|
||||
libevent
|
||||
openssl
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An open-source C++ networking library";
|
||||
longDescription = ''
|
||||
Wangle is a framework providing a set of common client/server
|
||||
abstractions for building services in a consistent, modular, and
|
||||
composable way.
|
||||
'';
|
||||
homepage = "https://github.com/facebook/wangle";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ pierreis kylesferrazza ];
|
||||
};
|
||||
}
|
@ -23671,6 +23671,8 @@ with pkgs;
|
||||
wally-cli = callPackage ../development/tools/wally-cli { };
|
||||
zsa-udev-rules = callPackage ../os-specific/linux/zsa-udev-rules { };
|
||||
|
||||
wangle = callPackage ../development/libraries/wangle { };
|
||||
|
||||
wavpack = callPackage ../development/libraries/wavpack { };
|
||||
|
||||
wayland = callPackage ../development/libraries/wayland { };
|
||||
|
Loading…
Reference in New Issue
Block a user