2023-01-30 11:54:53 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "ls-lint";
|
2023-05-27 10:05:20 +00:00
|
|
|
version = "2.0.0";
|
2023-01-30 11:54:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "loeffel-io";
|
|
|
|
repo = "ls-lint";
|
|
|
|
rev = "v${version}";
|
2023-05-27 10:05:20 +00:00
|
|
|
sha256 = "sha256-eEP/l3vdObdxUYIp8eSSCn3W0ypcmykbwQTDP083MVE=";
|
2023-01-30 11:54:53 +00:00
|
|
|
};
|
|
|
|
|
2023-05-27 10:05:20 +00:00
|
|
|
vendorHash = "sha256-nSHhU6z3ItCKBZy8ENBcAkXqSVo3DU6hAyezQczKShM=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|