Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fbthrift: init at 2019.06.10.00 #63097

Closed
wants to merge 6 commits into from
Closed

Conversation

pierreis
Copy link
Contributor

@pierreis pierreis commented Jun 13, 2019

Motivation for this change

Added Fbthrift library and its dependencies

New packages:

  1. Fbthrift (v2019.06.10.00)
  2. Fizz (v2019.06.10.00)
  3. Wangle (v2019.06.10.00)
  4. rsocket-cpp (git master)

Updated packages

  1. Folly (v2019.05.27.00 >> v2019.06.10.00)

Fixed packages

  1. Fixed fmt cmake manifest generation
Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nix-review --run "nix-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Assured whether relevant documentation is up to date
  • Fits CONTRIBUTING.md.

@pierreis
Copy link
Contributor Author

pierreis commented Jun 13, 2019

Referencing maintainers for updated dependencies:

@abbradar (Folly)
@jeroendehaas (Fmt)

@abbradar
Copy link
Member

Please split commits into separate ones for different derivations.

pkgs/development/libraries/wangle/default.nix Outdated Show resolved Hide resolved
pkgs/development/libraries/fbthrift/default.nix Outdated Show resolved Hide resolved
pkgs/development/libraries/fbthrift/default.nix Outdated Show resolved Hide resolved
pkgs/development/libraries/fmt/default.nix Outdated Show resolved Hide resolved
@pierreis
Copy link
Contributor Author

Comments have all been fixed.
Commits have been split by derivation.

@stale
Copy link

stale bot commented Jun 13, 2020

Thank you for your contributions.

This has been automatically marked as stale because it has had no activity for 180 days.

If this is still important to you, we ask that you leave a comment below. Your comment can be as simple as "still important to me". This lets people see that at least one person still cares about this. Someone will have to do this at most twice a year if there is no other activity.

Here are suggestions that might help resolve this more quickly:

  1. Search for maintainers and people that previously touched the related code and @ mention them in a comment.
  2. Ask on the NixOS Discourse.
  3. Ask on the #nixos channel on irc.freenode.net.

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 13, 2020
@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Oct 3, 2020
@stale
Copy link

stale bot commented Jun 6, 2021

I marked this as stale due to inactivity. → More info

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 6, 2021
@doronbehar
Copy link
Contributor

@pierreis do you still want this to get in? now fmt and folly are in a merge conflict.

@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 10, 2021
@doronbehar doronbehar added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 10, 2021
@SuperSandro2000 SuperSandro2000 changed the title fbthrift: init at v2019.06.10.00 fbthrift: init at 2019.06.10.00 Jun 10, 2021
@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 10, 2021
abstractions for building services in a consistent, modular, and
composable way.
'';
homepage = https://github.com/facebook/wangle;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
homepage = https://github.com/facebook/wangle;
homepage = "https://github.com/facebook/wangle";

openssl
];

meta = with stdenv.lib; {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
meta = with stdenv.lib; {
meta = with lib; {

double-conversion
fizz
folly
gtest
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this a checkInput?

openssl
];

meta = with stdenv.lib; {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
meta = with stdenv.lib; {
meta = with lib; {


meta = with stdenv.lib; {
description = "C++ implementation of RSocket";
homepage = https://github.com/rsocket/rsocket-cpp;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
homepage = https://github.com/rsocket/rsocket-cpp;
homepage = "https://github.com/rsocket/rsocket-cpp";


meta = with stdenv.lib; {
description = "Facebook's branch of Apache Thrift";
homepage = https://github.com/facebook/fbthrift;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
homepage = https://github.com/facebook/fbthrift;
homepage = "https://github.com/facebook/fbthrift";

zlib
];

meta = with stdenv.lib; {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
meta = with stdenv.lib; {
meta = with lib; {


meta = with stdenv.lib; {
description = "C++14 implementation of the TLS-1.3 standard";
homepage = https://github.com/facebookincubator/fizz;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
homepage = https://github.com/facebookincubator/fizz;
homepage = "https://github.com/facebookincubator/fizz";

Comment on lines +17 to +18
substituteInPlace $out/lib/cmake/fmt/fmt-targets.cmake \
--replace "\''${_IMPORT_PREFIX}/include" "$dev/include"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
substituteInPlace $out/lib/cmake/fmt/fmt-targets.cmake \
--replace "\''${_IMPORT_PREFIX}/include" "$dev/include"
substituteInPlace $out/lib/cmake/fmt/fmt-targets.cmake \
--replace "\''${_IMPORT_PREFIX}/include" "$dev/include"


stdenv.mkDerivation rec {
pname = "rsocket-cpp";
version = "2019-06-13";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
version = "2019-06-13";
version = "unstable-2019-06-13";

@stale
Copy link

stale bot commented Jan 9, 2022

I marked this as stale due to inactivity. → More info

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jan 9, 2022
@doronbehar
Copy link
Contributor

Closing due to OP not responding.

@doronbehar doronbehar closed this Jan 9, 2022
kylesferrazza added a commit to kylesferrazza/nixpkgs that referenced this pull request Nov 5, 2022
kylesferrazza added a commit to kylesferrazza/nixpkgs that referenced this pull request Nov 5, 2022
kylesferrazza added a commit to kylesferrazza/nixpkgs that referenced this pull request Nov 5, 2022
kylesferrazza added a commit to kylesferrazza/nixpkgs that referenced this pull request Nov 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants