1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add emacs-turtles.

* gnu/packages/emacs-xyz.scm (emacs-turtles): New variable.

Change-Id: Ia7fc70d240afbe2eeb8909a88e30caac6f4fe14f
This commit is contained in:
Nicolas Goaziou 2025-01-26 21:43:47 +01:00
parent a47bbf6965
commit 9946bbf8d8
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -10244,6 +10244,29 @@ tupfiles, such as rule definitions, user-defined variables, macros, flags, bin
variables, and so on. The mode also allows you to execute Tup commands.")
(license license:gpl3+)))
(define-public emacs-turtles
(package
(name "emacs-turtles")
(version "2.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/szermatt/turtles")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0gwnsrfiiizcrcccbs3pyx030wydg6xmh7vy9r7lvbh8hmxghbyg"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-compat))
(home-page "https://github.com/szermatt/turtles")
(synopsis "Library for writing ERT-based tests")
(description
"This package helps writing ERT-based tests that check how Emacs renders
buffers and windows. The ERT tests can be run interactively or in batch
mode.")
(license license:gpl3+)))
(define-public emacs-combobulate
(let ((commit "c7e4670a3047c0b58dff3746577a5c8e5832cfba")
(revision "1"))