2021-10-03 17:49:08 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, robloxSupport ? true
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, stdenv
|
2022-12-10 22:18:20 +00:00
|
|
|
, darwin
|
2021-10-03 17:49:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "selene";
|
2023-11-12 07:52:30 +00:00
|
|
|
version = "0.26.1";
|
2021-10-03 17:49:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kampfkarren";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-11-12 07:52:30 +00:00
|
|
|
sha256 = "sha256-0imHwZNyhJXFai1J5tHqnQ6Ta10nETQ5TILGH0bHc8Y=";
|
2021-10-03 17:49:08 +00:00
|
|
|
};
|
|
|
|
|
2023-11-12 07:52:30 +00:00
|
|
|
cargoHash = "sha256-Lm3agCnxDxcj7op17uiokK8Y790oMxwHJStvP/9DsI0=";
|
2021-10-03 17:49:08 +00:00
|
|
|
|
2022-12-10 22:18:20 +00:00
|
|
|
nativeBuildInputs = lib.optionals robloxSupport [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals robloxSupport [
|
|
|
|
openssl
|
2023-01-10 16:28:12 +00:00
|
|
|
] ++ lib.optionals (robloxSupport && stdenv.isDarwin) [
|
2022-12-10 22:18:20 +00:00
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
2021-10-03 17:49:08 +00:00
|
|
|
|
2021-11-16 13:32:07 +00:00
|
|
|
buildNoDefaultFeatures = !robloxSupport;
|
2021-10-03 17:49:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A blazing-fast modern Lua linter written in Rust";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "selene";
|
2021-10-03 17:49:08 +00:00
|
|
|
homepage = "https://github.com/kampfkarren/selene";
|
|
|
|
changelog = "https://github.com/kampfkarren/selene/blob/${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|