mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: emacs-haskell-mode: Update to 17.5-0.e9c3567.
* gnu/packages/emacs-xyz.scm (emacs-haskell-mode): Update to 17.5-0.e9c3567. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
6acb4b88ad
commit
5646ca4925
1 changed files with 13 additions and 5 deletions
|
@ -3102,18 +3102,20 @@ replacement.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-haskell-mode
|
(define-public emacs-haskell-mode
|
||||||
(package
|
(let ((commit "e9c356739310332afe59b10ffa2e6c3e76f124e3")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
(name "emacs-haskell-mode")
|
(name "emacs-haskell-mode")
|
||||||
(version "17.5")
|
(version (git-version "17.5" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/haskell/haskell-mode")
|
(url "https://github.com/haskell/haskell-mode")
|
||||||
(commit (string-append "v" version))))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ndi986rxq9gz61ss2vazadn7rn0niv1gnpk9nfq9sw3m336glsf"))))
|
(base32 "1mkp9b31ai1z6sccx8cff40viryamw7dm85acig3q82dwlbmxx98"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-dash))
|
(list emacs-dash))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -3192,7 +3194,7 @@ replacement.")
|
||||||
(description
|
(description
|
||||||
"This is an Emacs mode for editing, debugging and developing Haskell
|
"This is an Emacs mode for editing, debugging and developing Haskell
|
||||||
programs.")
|
programs.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-lean4-mode
|
(define-public emacs-lean4-mode
|
||||||
(package
|
(package
|
||||||
|
@ -12412,6 +12414,7 @@ generates it as a string. Please see the homepage for usage examples.")
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:test-command #~(list "make" "test" "CASK=")
|
||||||
#:imported-modules `(,@%emacs-build-system-modules
|
#:imported-modules `(,@%emacs-build-system-modules
|
||||||
(guix build python-build-system))
|
(guix build python-build-system))
|
||||||
#:modules '((guix build emacs-build-system)
|
#:modules '((guix build emacs-build-system)
|
||||||
|
@ -12420,6 +12423,11 @@ generates it as a string. Please see the homepage for usage examples.")
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'avoid-server-installation-for-tests
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("env: .*$")
|
||||||
|
(string-append "env: " #$output "/bin/jediepcserver\n")))))
|
||||||
(add-after 'unpack 'ensure-no-mtimes-pre-1980
|
(add-after 'unpack 'ensure-no-mtimes-pre-1980
|
||||||
(assoc-ref python:%standard-phases
|
(assoc-ref python:%standard-phases
|
||||||
'ensure-no-mtimes-pre-1980))
|
'ensure-no-mtimes-pre-1980))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue