rustypaste: fix darwin build

This commit is contained in:
Stanisław Pitucha 2023-03-21 16:15:37 +11:00
parent 79ac6c8fda
commit 220cd93919

View File

@ -1,4 +1,4 @@
{ lib, rustPlatform, fetchFromGitHub }:
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
rustPlatform.buildRustPackage rec {
pname = "rustypaste";
@ -13,6 +13,10 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-/zji2sFaOweBo666LqfNRpO/0vi1eAGgOReeuvQIaEQ=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
# Some tests need network
checkFlags = [
"--skip paste::tests::test_paste_data"