From c2e95ec2b438b6f40d60141ecbf93b45e9e7d612 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Sun, 23 Jun 2019 19:40:30 -0400 Subject: [PATCH] gnu: Add emacs-quack * gnu/packages/emacs-xyz.scm (emacs-quack): New variable. --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index cd29357fa7..688c994528 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24277,3 +24277,26 @@ intel-hex-mode will do font locking, and calculate checksums.") "Enable the mode using M-x highlight-parentheses-mode or by adding it to a hook.") (license license:gpl2))) + +(define-public emacs-quack + (package + (name "emacs-quack") + (version "20181106.1301") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/quack-" + version + ".el")) + (sha256 + (base32 + "0ph6zh91kasgbvi425a5m1hz94pxk6qa3srpy4khifsbn7cwiyga")))) + (build-system emacs-build-system) + (home-page "unspecified") + (synopsis + "Enhanced support for editing and running Scheme code") + (description + "Quack enhances Emacs support for Scheme programming. The name +Quack was a play on DrScheme.") + (license license:gpl2)))