mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #279014 from amjoseph-nixpkgs/pr/gurk-rs/fixcross
gurk-rs: fix cross
This commit is contained in:
commit
7941d7f6de
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, Cocoa
|
||||
, pkgsBuildHost
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
|
@ -38,7 +39,7 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
NIX_LDFLAGS = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ "-framework" "AppKit" ];
|
||||
|
||||
PROTOC = "${protobuf}/bin/protoc";
|
||||
PROTOC = "${pkgsBuildHost.protobuf}/bin/protoc";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Signal Messenger client for terminal";
|
||||
|
|
Loading…
Reference in a new issue