From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: vim: Add input ruby. Date: Thu, 13 Oct 2016 00:10:56 +0000 Message-ID: <20161013001056.17659-2-ng0@we.make.ritual.n0.is> References: <20161013001056.17659-1-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buTcM-0006ye-1Q for guix-devel@gnu.org; Wed, 12 Oct 2016 20:11:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1buTcH-0005Y7-O8 for guix-devel@gnu.org; Wed, 12 Oct 2016 20:11:24 -0400 Received: from aibo.runbox.com ([91.220.196.211]:32774) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buTcH-0005XK-Gh for guix-devel@gnu.org; Wed, 12 Oct 2016 20:11:21 -0400 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1buTcD-0003a8-Th for guix-devel@gnu.org; Thu, 13 Oct 2016 02:11:17 +0200 In-Reply-To: <20161013001056.17659-1-ng0@we.make.ritual.n0.is> 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/vim.scm (vim): Build with ruby support. --- gnu/packages/vim.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index b1ee527..3689b64 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Cyril Roelandt ;;; Copyright © 2016 Efraim Flashner +;;; Copyright © 2016 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,7 @@ #:use-module (gnu packages gawk) #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) + #:use-module (gnu packages ruby) #:use-module (gnu packages admin) ; For GNU hostname #:use-module (gnu packages shells)) @@ -44,6 +46,7 @@ (arguments `(#:test-target "test" #:parallel-tests? #f + #:configure-flags (list "--enable-rubyinterp" "--with-features=huge") #:phases (modify-phases %standard-phases (add-after 'unpack 'make-bit-reproducable @@ -66,6 +69,7 @@ ("inetutils" ,inetutils) ("ncurses" ,ncurses) ("perl" ,perl) + ("ruby" ,ruby) ("tcsh" ,tcsh))) ; For runtime/tools/vim32 (home-page "http://www.vim.org/") (synopsis "Text editor based on vi") -- 2.10.1