~ruther/guix-exprs

90aaa954cdf034230085a04a57c5ddabcea216df — Rutherther 8 days ago 33f8ed3 main
fix: remove nonexistent variable references
1 files changed, 14 insertions(+), 14 deletions(-)

M modules/ruther/packages/python-next.scm
M modules/ruther/packages/python-next.scm => modules/ruther/packages/python-next.scm +14 -14
@@ 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)))