nixpkgs/pkgs/development/tools/selene/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

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