mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: haskell-mode: Fix find emacs-stream elisp directory.
* gnu/packages/emacs.scm (haskell-mode)[arguments]: Find only directories with "\\.el$" in ‘el-dir’.
This commit is contained in:
parent
cee03b267c
commit
69611d3eac
1 changed files with 1 additions and 1 deletions
|
@ -614,7 +614,7 @@ (define-public haskell-mode
|
|||
'build 'pre-build
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(define (el-dir store-dir)
|
||||
(match (find-files store-dir)
|
||||
(match (find-files store-dir "\\.el$")
|
||||
((f1 f2 ...) (dirname f1))
|
||||
(_ "")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue