2021-12-06 19:02:23 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, withJson ? true, stdenv }:
|
2021-10-27 00:58:26 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "statix";
|
2022-02-16 14:55:43 +00:00
|
|
|
# also update version of the vim plugin in
|
|
|
|
# pkgs/applications/editors/vim/plugins/overrides.nix
|
2021-10-29 14:02:36 +00:00
|
|
|
# the version can be found in flake.nix of the source code
|
2022-06-18 03:34:18 +00:00
|
|
|
version = "0.5.6";
|
2021-10-27 00:58:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nerdypepper";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-06-18 03:34:18 +00:00
|
|
|
sha256 = "sha256-OQk80eTUufVUbYvZ38el2lmkgkU+5gr0hLTrBvzIp4A=";
|
2021-10-27 00:58:26 +00:00
|
|
|
};
|
|
|
|
|
2022-06-18 03:34:18 +00:00
|
|
|
cargoSha256 = "sha256-j+FcV5JtO66Aa0ncIUfjuWtqnMmFb7zW7rNXttYBUU4=";
|
2021-10-27 00:58:26 +00:00
|
|
|
|
2021-11-16 00:39:14 +00:00
|
|
|
buildFeatures = lib.optional withJson "json";
|
2021-10-27 00:58:26 +00:00
|
|
|
|
2021-12-06 19:02:23 +00:00
|
|
|
# tests are failing on darwin
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2021-10-27 00:58:26 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Lints and suggestions for the nix programming language";
|
|
|
|
homepage = "https://github.com/nerdypepper/statix";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ figsoda nerdypepper ];
|
|
|
|
};
|
|
|
|
}
|