nixpkgs/pkgs/by-name/st/statix/package.nix
2025-07-26 11:39:35 +02:00

41 lines
978 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
withJson ? true,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "statix";
# also update version of the vim plugin in
# pkgs/applications/editors/vim/plugins/overrides.nix
# the version can be found in flake.nix of the source code
version = "0.5.8";
src = fetchFromGitHub {
owner = "nerdypepper";
repo = "statix";
rev = "v${version}";
sha256 = "sha256-bMs3XMiGP6sXCqdjna4xoV6CANOIWuISSzCaL5LYY4c=";
};
cargoHash = "sha256-Pi1q2qNLjQYr3Wla7rqrktNm0StszB2klcfzwAnF3tE=";
buildFeatures = lib.optional withJson "json";
# tests are failing on darwin
doCheck = !stdenv.hostPlatform.isDarwin;
meta = with lib; {
description = "Lints and suggestions for the nix programming language";
homepage = "https://github.com/nerdypepper/statix";
license = licenses.mit;
mainProgram = "statix";
maintainers = with maintainers; [
figsoda
nerdypepper
];
};
}