copycat: fix darwin build
Add the required framework.
This commit is contained in:
parent
7a330d7d74
commit
7bf2534de6
@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
|
stdenv,
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
darwin,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@ -17,6 +19,10 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
cargoHash = "sha256-LYVhvq5l+PCZXW+elWi3zZFxLekgPn+plo4dybbLK9g=";
|
cargoHash = "sha256-LYVhvq5l+PCZXW+elWi3zZFxLekgPn+plo4dybbLK9g=";
|
||||||
|
|
||||||
|
buildInputs = lib.optionals (stdenv.isDarwin) [
|
||||||
|
darwin.apple_sdk_11_0.frameworks.AppKit
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Utility to copy project tree contents to clipboard";
|
description = "Utility to copy project tree contents to clipboard";
|
||||||
homepage = "https://github.com/DeeKahy/CopyCat";
|
homepage = "https://github.com/DeeKahy/CopyCat";
|
||||||
|
Loading…
Reference in New Issue
Block a user