syntax: init at 0.1.27

This commit is contained in:
h7x4 2023-11-08 09:05:27 +01:00
parent be4704f84a
commit 2bf9847a02
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146

View File

@ -0,0 +1,30 @@
{ lib
, fetchFromGitHub
, buildNpmPackage
, stdenv
, nix-update-script
}:
buildNpmPackage rec {
pname = "syntax";
version = "0.1.27";
src = fetchFromGitHub {
owner = "DmitrySoshnikov";
repo = "syntax";
rev = "v${version}";
hash = "sha256-5ZbelnZQvJ9k4GbWR+lDEgxXGLt4VsXput9nBV8nUdc=";
};
npmDepsHash = "sha256-jZwbRGGg4tek6Jr+V7/SceJlsbIv7jFWQ+qa+fnChTw=";
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/DmitrySoshnikov/syntax";
description = "Syntactic analysis toolkit, language-agnostic parser generator";
license = licenses.mit;
maintainers = with maintainers; [ h7x4 ];
mainProgram = "syntax-cli";
broken = stdenv.isDarwin;
};
}