Unverified Commit 33d98d14 authored by Jonas Chevalier's avatar Jonas Chevalier Committed by GitHub
Browse files

Merge pull request #213567 from flokli/ls-lint-init

ls-lint: init at 1.11.2
parents deb85c6b 359ab2f7
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "ls-lint";
  version = "1.11.2";

  src = fetchFromGitHub {
    owner = "loeffel-io";
    repo = "ls-lint";
    rev = "v${version}";
    sha256 = "sha256-mt1SvRHtAA0lChZ//8XIQGDPg1l1EOMkPIAe8YKhMSs=";
  };

  vendorSha256 = "sha256-OEwN9kj1npI+H7DY+e3tl5TIY/qr4y2CgAV5fwNA9l4=";

  meta = with lib; {
    description = "An extremely fast file and directory name linter";
    homepage = "https://ls-lint.org/";
    license = licenses.mit;
    maintainers = with maintainers; [ flokli ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -18023,6 +18023,8 @@ with pkgs;
  litestream = callPackage ../development/tools/database/litestream {};
  ls-lint = callPackage ../development/tools/ls-lint { };
  lsof = callPackage ../development/tools/misc/lsof { };
  ltrace = callPackage ../development/tools/misc/ltrace { };