mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
grpcui: fix build on darwin
This commit is contained in:
parent
26f5b0ed8f
commit
a8c36060b7
@ -1,4 +1,4 @@
|
|||||||
{ buildGoModule, fetchFromGitHub, lib }:
|
{ buildGoModule, fetchFromGitHub, stdenv, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "grpcui";
|
pname = "grpcui";
|
||||||
@ -13,7 +13,9 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "1yq8484cjxad72nqsrim3zppr8hmn7dc6f8rgkw8fg952lqy5jjb";
|
modSha256 = "1yq8484cjxad72nqsrim3zppr8hmn7dc6f8rgkw8fg952lqy5jjb";
|
||||||
|
|
||||||
meta = with lib; {
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "An interactive web UI for gRPC, along the lines of postman";
|
description = "An interactive web UI for gRPC, along the lines of postman";
|
||||||
homepage = "https://github.com/fullstorydev/grpcui";
|
homepage = "https://github.com/fullstorydev/grpcui";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -3920,6 +3920,7 @@ in
|
|||||||
|
|
||||||
grpcui = callPackage ../tools/networking/grpcui {
|
grpcui = callPackage ../tools/networking/grpcui {
|
||||||
buildGoModule = buildGo112Module;
|
buildGoModule = buildGo112Module;
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
grub = pkgsi686Linux.callPackage ../tools/misc/grub ({
|
grub = pkgsi686Linux.callPackage ../tools/misc/grub ({
|
||||||
|
Loading…
Reference in New Issue
Block a user