snagboot: 2.2 -> 2.4 (#446249)

This commit is contained in:
Yohann Boniface
2025-09-29 12:03:23 +00:00
committed by GitHub

View File

@@ -11,14 +11,14 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "snagboot"; pname = "snagboot";
version = "2.2"; version = "2.4";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bootlin"; owner = "bootlin";
repo = "snagboot"; repo = "snagboot";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-JXhh+Ed/ZwytNrMwvGw7jaDBvwDQiUKe+gBDezOCHO4="; hash = "sha256-ZjN4k5prOoEdAT4z37XiHdnUgLsz3zeR3+0zxY+2420=";
}; };
build-system = with python3Packages; [ build-system = with python3Packages; [
@@ -42,8 +42,11 @@ python3Packages.buildPythonApplication rec {
libfdt libfdt
# swig # swig
packaging packaging
xmodem
]; ];
pythonRelaxDeps = [ "pylibfdt" ];
optional-dependencies = with python3Packages; { optional-dependencies = with python3Packages; {
gui = [ kivy ]; gui = [ kivy ];
}; };