mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
hey: fix build on darwin
This commit is contained in:
parent
cb8f82b836
commit
7e4f82ce7f
@ -1,4 +1,4 @@
|
||||
{ buildGoModule, lib, fetchFromGitHub }:
|
||||
{ buildGoModule, stdenv, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "hey";
|
||||
@ -13,7 +13,9 @@ buildGoModule rec {
|
||||
|
||||
modSha256 = "0a00kcyagqczw0vhl8qs2xs1y8myw080y9kjs4qrcmj6kibdy55q";
|
||||
|
||||
meta = with lib; {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "HTTP load generator, ApacheBench (ab) replacement";
|
||||
homepage = "https://github.com/rakyll/hey";
|
||||
license = licenses.asl20;
|
||||
|
@ -4147,7 +4147,9 @@ in
|
||||
hexd = callPackage ../tools/misc/hexd { };
|
||||
pixd = callPackage ../tools/misc/pixd { };
|
||||
|
||||
hey = callPackage ../tools/networking/hey { };
|
||||
hey = callPackage ../tools/networking/hey {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
hhpc = callPackage ../tools/misc/hhpc { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user