ludtwig: init at 0.8.0

This commit is contained in:
Soner Sayakci 2023-11-17 11:45:04 +01:00
parent 0fd5ff65bc
commit 7aaa764930
No known key found for this signature in database

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "ludtwig";
version = "0.8.0";
src = fetchFromGitHub {
owner = "MalteJanz";
repo = pname;
rev = "v${version}";
hash = "sha256-WF3tEf3SuXiH35Ny4RGLzvEW7yMsFcnVTX52e5qvK5g=";
};
checkType = "debug";
cargoHash = "sha256-AbT8Jv6v7EVPX5mIplKaBkGrVonA8YWlMvo46coFMzk=";
meta = with lib; {
description = "Linter / Formatter for Twig template files which respects HTML and your time.";
homepage = "https://github.com/MalteJanz/ludtwig";
license = licenses.mit;
maintainers = with maintainers; [ shyim ];
};
}