tlafmt: init at 0.3.0 (#389162)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user