From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add emacs-cyberpunk-theme Date: Mon, 29 Aug 2016 00:32:21 +0000 Message-ID: <87fupojtyi.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38150) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beAUy-0005vA-Rr for guix-devel@gnu.org; Sun, 28 Aug 2016 20:32:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1beAUw-00078d-Ss for guix-devel@gnu.org; Sun, 28 Aug 2016 20:32:23 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:44476 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beAUw-00078Z-JF for guix-devel@gnu.org; Sun, 28 Aug 2016 20:32:22 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id 1b35e4ef TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Mon, 29 Aug 2016 00:32:21 +0000 (UTC) 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 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0003-gnu-Add-emacs-cyberpunk-theme.patch >From 43c6c8a9983d064e7cfdeed59c3dc923a38007bc Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 28 Aug 2016 23:46:57 +0000 Subject: [PATCH 3/4] gnu: Add emacs-cyberpunk-theme. * gnu/packages/emacs.scm (emacs-cyberpunk-theme): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f3a4627..311f484 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3029,3 +3029,25 @@ and contiguous matches (substring). The longer the substring match, the higher it scores. This maps well to how we think about matching. Flx has support for ido (interactively do things) through flx-ido.") (license license:gpl3+)))) + +(define-public emacs-cyberpunk-theme + (let ((upstream-name "cyberpunk-theme.el")) + (package + (name "emacs-cyberpunk-theme") + (version "1.17") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/n3mo/" + upstream-name "/archive/" version ".tar.gz")) + (sha256 + (base32 + "068jcn4g1bvwgpcvyfqygzw6ahill51c1sqzyyvj2paxckbd7h51")) + (file-name (string-append name "-" version ".tar.gz")))) + (build-system emacs-build-system) + (home-page "https://github.com/n3mo/cyberpunk-theme.el") + (synopsis "Cyberpunk theme for emacs built-in color theme support") + (description + "Cyberpunk color theme for the emacs 24+ built-in color theme support +known loosely as deftheme. Many mode-specific customizations are included.") + (license license:gpl3+)))) -- 2.9.3 --=-=-= Content-Type: text/plain -- ng0 For non-prism friendly talk find me on http://www.psyced.org --=-=-=--