From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 2/2] gnu: Add emacs-better-defaults. Date: Fri, 27 May 2016 10:10:15 -0400 Message-ID: <1464358215-4416-2-git-send-email-dthompson2@worcester.edu> References: <1464358215-4416-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57296) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6ITH-00009D-EW for guix-devel@gnu.org; Fri, 27 May 2016 10:10:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6ITB-0005wA-Av for guix-devel@gnu.org; Fri, 27 May 2016 10:10:38 -0400 Received: from mail-qk0-x244.google.com ([2607:f8b0:400d:c09::244]:35265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6ITB-0005vy-2m for guix-devel@gnu.org; Fri, 27 May 2016 10:10:33 -0400 Received: by mail-qk0-x244.google.com with SMTP id z80so4942068qkb.2 for ; Fri, 27 May 2016 07:10:33 -0700 (PDT) In-Reply-To: <1464358215-4416-1-git-send-email-dthompson2@worcester.edu> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-better-defaults): New variable. --- gnu/packages/emacs.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5d6db5a..105c25d 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1706,3 +1706,24 @@ It is recommended to use @code{clojure-mode} with paredit or smartparens.") The purpose of this library is to wrap all the quirks and hassle of @code{package.el} into a sane API.") (license license:gpl3+))) + +(define-public emacs-better-defaults + (package + (name "emacs-better-defaults") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (string-append "http://stable.melpa.org/packages/better-defaults-" + version ".el")) + (sha256 + (base32 + "0lvpmja8i8v10lbcvzj6pd7vn9c7gnlbcddd416g2pjq0yydydgf")))) + (build-system emacs-build-system) + (home-page "https://github.com/technomancy/better-defaults") + (synopsis "Better defaults for Emacs") + (description + "Better defaults attempts to address the most obvious deficiencies of the +Emacs default configuration in uncontroversial ways that nearly everyone can +agree upon.") + (license license:gpl3+))) -- 2.7.3