mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, robloxSupport ? true
|
|
, pkg-config
|
|
, openssl
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "selene";
|
|
version = "0.27.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kampfkarren";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-NbVSFYv3nyEjSf0bFajcMaoWP2bS0EfJT8tDddjS7jg=";
|
|
};
|
|
|
|
cargoHash = "sha256-e3oQUFtgdjqPiB2YpmqnFUG2scmYJhLSpUaw0W6RxIk=";
|
|
|
|
nativeBuildInputs = lib.optionals robloxSupport [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals robloxSupport [
|
|
openssl
|
|
] ++ lib.optionals (robloxSupport && stdenv.hostPlatform.isDarwin) [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
buildNoDefaultFeatures = !robloxSupport;
|
|
|
|
meta = with lib; {
|
|
description = "Blazing-fast modern Lua linter written in Rust";
|
|
mainProgram = "selene";
|
|
homepage = "https://github.com/kampfkarren/selene";
|
|
changelog = "https://github.com/kampfkarren/selene/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|