From 90aaa954cdf034230085a04a57c5ddabcea216df Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 25 Sep 2025 20:12:38 +0200 Subject: [PATCH] fix: remove nonexistent variable references --- modules/ruther/packages/python-next.scm | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/modules/ruther/packages/python-next.scm b/modules/ruther/packages/python-next.scm index 24a66262a59594016bfb930094638ab58802dd98..a5e949466ba6ce526c3273f1a08471da879a5c44 100644 --- a/modules/ruther/packages/python-next.scm +++ b/modules/ruther/packages/python-next.scm @@ -207,17 +207,17 @@ pre-defined variants." (define python-3.12-cython-inner (with-explicit-python-3.12-single python-cython)) -(define python-3.12-cython-0.29.35 - (with-explicit-python-3.12-single python-cython-0.29.35)) - -(define with-python-3.12-single - (lambda (pkg) - (let ((rewritten (with-explicit-python-3.12-single pkg))) - ((package-input-rewriting `((,python-3.12-cython-inner . ,python-3.12-cython-0.29.35))) - rewritten)))) - -(define-public (with-explicit-python-3.12 el) - (if - (list? el) - (map with-python-3.12-single el) - (with-python-3.12-single el))) +;; (define python-3.12-cython-0.29.35 +;; (with-explicit-python-3.12-single python-cython-0.29.35)) + +;; (define with-python-3.12-single +;; (lambda (pkg) +;; (let ((rewritten (with-explicit-python-3.12-single pkg))) +;; ((package-input-rewriting `((,python-3.12-cython-inner . ,python-3.12-cython-0.29.35))) +;; rewritten)))) + +;; (define-public (with-explicit-python-3.12 el) +;; (if +;; (list? el) +;; (map with-python-3.12-single el) +;; (with-python-3.12-single el)))