horizon-eda: 2.6.0 -> 2.7.0

This commit is contained in:
R. Ryantm
2025-06-10 18:08:26 +02:00
committed by Juergen Fitschen
parent c03708e5ff
commit bc5c600002
2 changed files with 11 additions and 2 deletions
+2 -2
View File
@@ -24,13 +24,13 @@ in
# This base is used in horizon-eda and python3Packages.horizon-eda
rec {
pname = "horizon-eda";
version = "2.6.0";
version = "2.7.0";
src = fetchFromGitHub {
owner = "horizon-eda";
repo = "horizon";
rev = "v${version}";
hash = "sha256-0ikCR10r/WPb+H+Ut2GO6y4A/9bctJLanL/RR4r9GWs=";
hash = "sha256-Y2oopRycYSxtiKuQZSfTBVP7RmpZ0JA+QyZgnrpoAes=";
};
nativeBuildInputs = [
@@ -1,5 +1,6 @@
{
buildPythonPackage,
fetchpatch,
horizon-eda,
pycairo,
python,
@@ -22,6 +23,14 @@ buildPythonPackage {
disabled = pythonOlder "3.9";
patches = [
# Replaces osmesa with EGL_PLATFORM_SURFACELESS_MESA
(fetchpatch {
url = "https://github.com/horizon-eda/horizon/commit/663a8adaa1cb7eae7a824de07df8909bc33677c3.patch";
hash = "sha256-g0rP9NBDdDijh35Y2h4me9N5R/mjCn+2w7uhnv9bweY=";
})
];
buildInputs = base.buildInputs ++ [
python
];