Skip to content

grpcwebproxy: init at 0.15.0#289071

Open
bouk wants to merge 1 commit intoNixOS:masterfrom
bouk:bouk/init-grpcwebproxy
Open

grpcwebproxy: init at 0.15.0#289071
bouk wants to merge 1 commit intoNixOS:masterfrom
bouk:bouk/init-grpcwebproxy

Conversation

@bouk
Copy link
Member

@bouk bouk commented Feb 15, 2024

Description of changes

Things done

  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
    • sandbox = relaxed
    • sandbox = true
  • Tested, as applicable:
  • Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • 24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
    • (Package updates) Added a release notes entry if the change is major or breaking
    • (Module updates) Added a release notes entry if the change is significant
    • (Module addition) Added a release notes entry if adding a new NixOS module
  • Fits CONTRIBUTING.md.

Add a 👍 reaction to pull requests you find important.

@ofborg ofborg bot added 8.has: package (new) This PR adds a new package 11.by: package-maintainer This PR was created by a maintainer of all the package it changes. 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 10.rebuild-darwin: 1 This PR causes 1 package to rebuild on Darwin. 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux. 10.rebuild-linux: 1 This PR causes 1 package to rebuild on Linux. labels Feb 15, 2024
@wegank wegank added the 12.approvals: 1 This PR was reviewed and approved by one person. label Oct 29, 2024
@KiaraGrouwstra
Copy link
Contributor

Result of nixpkgs-review pr 289071 run on x86_64-linux 1

1 package built:
  • grpcwebproxy

@FliegendeWurst FliegendeWurst changed the title grpcwebproxy: init at 0.15.0 grpcwebproxy: init at 0.15.0 (re-trigger CI) Dec 15, 2024
@FliegendeWurst FliegendeWurst changed the title grpcwebproxy: init at 0.15.0 (re-trigger CI) grpcwebproxy: init at 0.15.0 Dec 15, 2024
@FliegendeWurst FliegendeWurst added the 2.status: needs-changes This PR needs changes by the author label Dec 15, 2024
@wegank wegank added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jan 2, 2025
vendorHash = "sha256-8KRjugc+Bde0HqjzpY0Ib/JbsoIwEwJTKmk/EvHnaME=";

meta = with lib; {
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
description = "Small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";

Comment on lines +16 to +23
meta = with lib; {
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
homepage = "https://github.com/improbable-eng/grpc-web";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ bouk ];
mainProgram = "grpcwebproxy";
};
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
meta = with lib; {
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
homepage = "https://github.com/improbable-eng/grpc-web";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ bouk ];
mainProgram = "grpcwebproxy";
};
meta = {
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
homepage = "https://github.com/improbable-eng/grpc-web";
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ bouk ];
mainProgram = "grpcwebproxy";
};

@@ -0,0 +1,24 @@
{ buildGoModule, fetchFromGitHub, lib }:
Copy link
Contributor

Choose a reason for hiding this comment

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

This needs a nixfmt run.

src = fetchFromGitHub {
owner = "improbable-eng";
repo = "grpc-web";
rev = "v${version}";
Copy link
Contributor

Choose a reason for hiding this comment

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

Probably:

Suggested change
rev = "v${version}";
tag = "v${version}";


meta = with lib; {
description = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol";
homepage = "https://github.com/improbable-eng/grpc-web";
Copy link
Contributor

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/improbable-eng/grpc-web";
homepage = "https://github.com/improbable-eng/grpc-web";
changelog = "https://github.com/improbable-eng/grpc-web/blob/v${version}/CHANGELOG.md";

@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jan 4, 2025
@nixpkgs-ci nixpkgs-ci bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 25, 2025
@nixpkgs-ci nixpkgs-ci bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 25, 2025
@nixpkgs-ci nixpkgs-ci bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jul 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

2.status: needs-changes This PR needs changes by the author 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md 8.has: package (new) This PR adds a new package 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 10.rebuild-darwin: 1 This PR causes 1 package to rebuild on Darwin. 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux. 10.rebuild-linux: 1 This PR causes 1 package to rebuild on Linux. 11.by: package-maintainer This PR was created by a maintainer of all the package it changes. 12.approvals: 1 This PR was reviewed and approved by one person.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants