Files

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

41 lines
978 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = "oppiliappan";
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/oppiliappan/statix";
license = licenses.mit;
mainProgram = "statix";
maintainers = with maintainers; [
figsoda
nerdypepper
];
};
}