mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: emacs-ob-sclang: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-ob-sclang)[origin]<snippet>: Extract correct file.
This commit is contained in:
parent
2f5b529480
commit
5bec5f1184
1 changed files with 5 additions and 4 deletions
|
@ -12269,10 +12269,11 @@ (define-public emacs-ob-sclang
|
|||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(for-each (lambda (file)
|
||||
(unless (equal? file "./ob-sclang.el")
|
||||
(delete-file file)))
|
||||
(find-files "." "\\.el"))))))
|
||||
(with-directory-excursion "lisp"
|
||||
(for-each (lambda (file)
|
||||
(unless (equal? file "./ob-sclang.el")
|
||||
(delete-file file)))
|
||||
(find-files "." "\\.el$")))))))
|
||||
(propagated-inputs
|
||||
(list emacs-org emacs-scel))
|
||||
(synopsis "Org Babel support for SuperCollider")
|
||||
|
|
Loading…
Reference in a new issue