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

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

44 lines
1021 B
Nix
Raw Normal View History

2021-10-03 17:49:08 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, robloxSupport ? true
, pkg-config
, openssl
, stdenv
, darwin
2021-10-03 17:49:08 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "selene";
version = "0.25.0";
2021-10-03 17:49:08 +00:00
src = fetchFromGitHub {
owner = "kampfkarren";
repo = pname;
rev = version;
sha256 = "sha256-aKU+1eoLm/h5Rj/vAZOyAnyl5/TpStL5g8PPdYCJ8o0=";
2021-10-03 17:49:08 +00:00
};
cargoSha256 = "sha256-y2BoV59oJPMBf9rUgMhHu87teurwPSNowRbuPfXubGA=";
2021-10-03 17:49:08 +00: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 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";
homepage = "https://github.com/kampfkarren/selene";
changelog = "https://github.com/kampfkarren/selene/blob/${version}/CHANGELOG.md";
license = licenses.mpl20;
maintainers = with maintainers; [ figsoda ];
};
}