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

39 lines
966 B
Nix
Raw Normal View History

2021-10-03 17:49:08 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, robloxSupport ? true
, pkg-config
, openssl
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "selene";
2021-11-05 12:17:41 +00:00
version = "0.15.0";
2021-10-03 17:49:08 +00:00
src = fetchFromGitHub {
owner = "kampfkarren";
repo = pname;
rev = version;
2021-11-05 12:17:41 +00:00
sha256 = "sha256-tA1exZ97N2tAagAljt+MOSGh6objOiqbZXUaBZ62Sls=";
2021-10-03 17:49:08 +00:00
};
2021-11-05 12:17:41 +00:00
cargoSha256 = "sha256-4vCKiTWwnibNK6/S1GOYRurgm2Aq1e9o4rAmp0hqGeA=";
2021-10-03 17:49:08 +00:00
nativeBuildInputs = lib.optional robloxSupport pkg-config;
buildInputs = lib.optional robloxSupport openssl
++ lib.optional (robloxSupport && stdenv.isDarwin) Security;
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 ];
};
}