nixpkgs/pkgs/development/tools/ls-lint/default.nix

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

23 lines
562 B
Nix
Raw Normal View History

2023-01-30 11:54:53 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ls-lint";
2023-11-05 07:12:59 +00:00
version = "2.2.2";
2023-01-30 11:54:53 +00:00
src = fetchFromGitHub {
owner = "loeffel-io";
repo = "ls-lint";
rev = "v${version}";
2023-11-05 07:12:59 +00:00
sha256 = "sha256-twXaiPccc6DZdzKdvB+BzHbRuwgDy05C3jNg7Ur8yrA=";
2023-01-30 11:54:53 +00:00
};
2023-11-05 07:12:59 +00:00
vendorHash = "sha256-uyNOcIjrICr76Q8izXGRMhofDcjQrzbB/ISHTqRY5fI=";
2023-01-30 11:54:53 +00:00
meta = with lib; {
description = "An extremely fast file and directory name linter";
homepage = "https://ls-lint.org/";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}