tlafmt: init at 0.3.0 (#389162)

This commit is contained in:
Arne Keller
2025-03-18 18:16:53 +01:00
committed by GitHub
2 changed files with 34 additions and 0 deletions
+6
View File
@@ -4389,6 +4389,12 @@
github = "ciferkey";
githubId = 101422;
};
ciflire = {
name = "Léo Vesse";
email = "leovesse@gmail.com";
github = "Ciflire";
githubId = 39668077;
};
cig0 = {
name = "Martín Cigorraga";
email = "cig0.github@gmail.com";
+28
View File
@@ -0,0 +1,28 @@
{
rustPlatform,
lib,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "tlafmt";
version = "0.3.0";
src = fetchFromGitHub {
owner = "domodwyer";
repo = "tlafmt";
tag = "v${version}";
hash = "sha256-jBY7erB2LuKwCkshVHLV5kFVRJ8lkT63z1gt1Tikei4=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-765tp4wUh7G92vaoViufo6Kk2c/w2d1XjZ3aN5UUAv0=";
meta = {
description = "Formatter for TLA+ specs";
homepage = "https://github.com/domodwyer/tlafmt";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ciflire ];
mainProgram = "tlafmt";
};
}