mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +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
|
, rustPlatform
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, Cocoa
|
, Cocoa
|
||||||
|
, pkgsBuildHost
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
|
@ -38,7 +39,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
NIX_LDFLAGS = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ "-framework" "AppKit" ];
|
NIX_LDFLAGS = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ "-framework" "AppKit" ];
|
||||||
|
|
||||||
PROTOC = "${protobuf}/bin/protoc";
|
PROTOC = "${pkgsBuildHost.protobuf}/bin/protoc";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Signal Messenger client for terminal";
|
description = "Signal Messenger client for terminal";
|
||||||
|
|
Loading…
Reference in a new issue