From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: Fwd: [PATCH] emacs-epl Date: Fri, 27 May 2016 11:11:05 +0300 Message-ID: <87shx3hqee.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54477) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6CrQ-0000CS-8C for guix-devel@gnu.org; Fri, 27 May 2016 04:11:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6CrL-0001Mm-69 for guix-devel@gnu.org; Fri, 27 May 2016 04:11:11 -0400 Received: from mail-lf0-x231.google.com ([2a00:1450:4010:c07::231]:36092) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6CrK-0001Lo-Bk for guix-devel@gnu.org; Fri, 27 May 2016 04:11:07 -0400 Received: by mail-lf0-x231.google.com with SMTP id b73so20082605lfb.3 for ; Fri, 27 May 2016 01:11:06 -0700 (PDT) In-Reply-To: (catonano@gmail.com's message of "Thu, 26 May 2016 23:09:20 +0200") 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: Catonano Cc: guix-devel@gnu.org Catonano (2016-05-27 00:09 +0300) wrote: > From 0d303576f88d00f2d3b58e7c452bcf575876b124 Mon Sep 17 00:00:00 2001 > From: humanitiesNerd > Date: Thu, 26 May 2016 01:31:30 +0200 > Subject: gnu: Add new variable (emacs-epl). The name should be: gnu: Add emacs-epl. > * gnu/packages/emacs.scm (emacs-epl): New variable. > --- > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 967f583..e513dc6 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1684,3 +1684,28 @@ well as completely new features.") > refactoring for the @uref{http://clojure.org, Clojure programming language}. > It is recommended to use @code{clojure-mode} with paredit or smartparens.") > (license license:gpl3+))) > + > +(define-public emacs-epl > + (package > + (name "emacs-epl") > + (version "0.8") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/cask/epl/archive/" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc")))) > + (build-system emacs-build-system) > + (home-page "http://github.com/cask/epl") > + (synopsis "Emacs Package Library") > + (description > + "A package management library for Emacs, based on package.el. I wrapped "package.el" into @code{} structure. > + > +The purpose of this library is to wrap all the quirks and hassle of > +package.el into a sane API.") > + (license license:gpl3+))) > + Applied as commit d345491ab4896dcf4f492bc4c8c7df2387991071, thanks! -- Alex