From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58678) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSqxy-00069f-An for guix-patches@gnu.org; Wed, 05 Jul 2017 16:32:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dSqxu-00063g-Dk for guix-patches@gnu.org; Wed, 05 Jul 2017 16:32:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51117) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dSqxu-00063c-AN for guix-patches@gnu.org; Wed, 05 Jul 2017 16:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dSqxu-00053K-5M for guix-patches@gnu.org; Wed, 05 Jul 2017 16:32:02 -0400 Subject: [bug#27591] [PATCH 1/2] gnu: Add ncurses-with-gpm. Resent-Message-ID: From: Danny Milosavljevic Date: Wed, 5 Jul 2017 22:31:03 +0200 Message-Id: <20170705203104.20941-1-dannym@scratchpost.org> In-Reply-To: <20170705202926.20803-1-dannym@scratchpost.org> References: <20170705202926.20803-1-dannym@scratchpost.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27591@debbugs.gnu.org * gnu/packages/linux.scm (ncurses/gpm): New variable. --- gnu/packages/linux.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index da41824cf..123cace2a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3003,6 +3003,19 @@ applications running on the Linux console. It allows users to select items and copy/paste text in the console and in xterm.") (license license:gpl2+))) +(define-public ncurses/gpm + (package + (inherit ncurses) + (name "ncurses-with-gpm") + (arguments + (substitute-keyword-arguments (package-arguments ncurses) + ((#:configure-flags cf) + `(cons (string-append "--with-gpm=" + (assoc-ref %build-inputs "gpm") + "/lib/libgpm.so.2") ,cf)))) + (inputs + `(("gpm" ,gpm))))) + (define-public btrfs-progs (package (name "btrfs-progs")