nixpkgs/pkgs/tools/nix/statix/default.nix

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

31 lines
909 B
Nix
Raw Normal View History

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";
# 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
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 ];
};
}