systemrdl-compiler: init at 1.32.1

This commit is contained in:
Jared Baur
2025-12-13 18:06:22 -08:00
parent 7dc5bb4cf3
commit 7c0de18401
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
antlr4-python3-runtime,
buildPythonPackage,
colorama,
fetchFromGitHub,
gitUpdater,
lib,
markdown,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "systemrdl-compiler";
version = "1.32.1";
pyproject = true;
src = fetchFromGitHub {
owner = "SystemRDL";
repo = "systemrdl-compiler";
tag = "v${version}";
hash = "sha256-BTONBzNE9GfBeallS6P4E1ukPs2EzFa31/SpxEjXmKw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
antlr4-python3-runtime
colorama
markdown
];
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = {
description = "SystemRDL 2.0 language compiler front-end";
homepage = "https://systemrdl-compiler.readthedocs.io/en/stable/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jmbaur ];
};
}
+2
View File
@@ -18341,6 +18341,8 @@ self: super: with self; {
systemdunitparser = callPackage ../development/python-modules/systemdunitparser { };
systemrdl-compiler = callPackage ../development/python-modules/systemrdl-compiler { };
sysv-ipc = callPackage ../development/python-modules/sysv-ipc { };
t61codec = callPackage ../development/python-modules/t61codec { };