nixpkgs/pkgs/by-name/se/selene/package.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 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";
2024-04-29 04:09:10 +00:00
version = "0.27.1";
2021-10-03 17:49:08 +00:00
src = fetchFromGitHub {
owner = "kampfkarren";
repo = pname;
rev = version;
2024-04-29 04:09:10 +00:00
sha256 = "sha256-NbVSFYv3nyEjSf0bFajcMaoWP2bS0EfJT8tDddjS7jg=";
2021-10-03 17:49:08 +00:00
};
2024-04-29 04:09:10 +00:00
cargoHash = "sha256-e3oQUFtgdjqPiB2YpmqnFUG2scmYJhLSpUaw0W6RxIk=";
2021-10-03 17:49:08 +00:00
nativeBuildInputs = lib.optionals robloxSupport [
pkg-config
];
buildInputs = lib.optionals robloxSupport [
openssl
] ++ lib.optionals (robloxSupport && stdenv.hostPlatform.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 = "Blazing-fast modern Lua linter written in Rust";
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 ];
};
}