159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
28 lines
772 B
Nix
28 lines
772 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "leptosfmt";
|
|
version = "0.1.30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bram209";
|
|
repo = "leptosfmt";
|
|
rev = "85b06b9a8bb0616b6a03ba43517245c79e1dd4cf";
|
|
hash = "sha256-PiVPnni7W8SIhO6L9698RSMTD4VVTB+klLrqMzEtWWo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-zj81fXjDM648Y8mIb6QMmAh/ck9GGEypzuJIBWZ32r8=";
|
|
|
|
meta = with lib; {
|
|
description = "Formatter for the leptos view! macro";
|
|
mainProgram = "leptosfmt";
|
|
homepage = "https://github.com/bram209/leptosfmt";
|
|
changelog = "https://github.com/bram209/leptosfmt/blob/${src.rev}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|