Merge pull request #266473 from h7x4/pkgs-init-syntax

syntax: init at 0.1.27
This commit is contained in:
Peder Bergebakken Sundt 2023-12-06 23:38:00 +01:00 committed by GitHub
commit af19e31300
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}