mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
70 lines
1.7 KiB
Nix
70 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, darwin
|
|
, cmake
|
|
}:
|
|
|
|
let
|
|
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lune";
|
|
version = "0.8.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "filiptibell";
|
|
repo = "lune";
|
|
rev = "v${version}";
|
|
hash = "sha256-03ckR2FpSlaAZlhjyX3ob+7W5Pq8OLri7jT+XIM7oeQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-xEUq3Cc15bUAXpUoZw8tNQo6tW3/VXeuOtjIW4zrh1Q=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake # required for libz-ng-sys
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
Security
|
|
SystemConfiguration
|
|
];
|
|
|
|
# error: linker `aarch64-linux-gnu-gcc` not found
|
|
postPatch = ''
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
checkFlags = [
|
|
# require internet access
|
|
"--skip=tests::net_socket_basic"
|
|
"--skip=tests::net_request_codes"
|
|
"--skip=tests::net_request_compression"
|
|
"--skip=tests::net_request_methods"
|
|
"--skip=tests::net_request_query"
|
|
"--skip=tests::net_request_redirect"
|
|
"--skip=tests::net_socket_wss"
|
|
"--skip=tests::net_socket_wss_rw"
|
|
"--skip=tests::roblox_instance_custom_async"
|
|
"--skip=tests::serde_json_decode"
|
|
|
|
# uses root as the CWD
|
|
"--skip=tests::process_spawn_cwd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Standalone Luau script runtime";
|
|
mainProgram = "lune";
|
|
homepage = "https://github.com/lune-org/lune";
|
|
changelog = "https://github.com/lune-org/lune/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ lammermann ];
|
|
# note: Undefined symbols for architecture x86_64
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|