From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46199) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieKU7-0002gH-GC for guix-patches@gnu.org; Mon, 09 Dec 2019 09:58:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieKU6-0007RG-AT for guix-patches@gnu.org; Mon, 09 Dec 2019 09:58:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48287) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieKU6-0007Qg-4Q for guix-patches@gnu.org; Mon, 09 Dec 2019 09:58:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieKU6-0005Vt-3W for guix-patches@gnu.org; Mon, 09 Dec 2019 09:58:02 -0500 Subject: [bug#38548] [PATCH] gnu: Add love-nuklear. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:47082) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieFQ4-00050w-Hm for guix-patches@gnu.org; Mon, 09 Dec 2019 04:33:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieFQ3-0000mr-DF for guix-patches@gnu.org; Mon, 09 Dec 2019 04:33:32 -0500 Received: from mail-pf1-x444.google.com ([2607:f8b0:4864:20::444]:42087) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieFQ3-0000l2-80 for guix-patches@gnu.org; Mon, 09 Dec 2019 04:33:31 -0500 Received: by mail-pf1-x444.google.com with SMTP id 4so6912212pfz.9 for ; Mon, 09 Dec 2019 01:33:30 -0800 (PST) From: Jethro Cao Date: Mon, 9 Dec 2019 16:32:59 +0700 Message-Id: <20191209093259.16706-1-jethrocao@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 38548@debbugs.gnu.org Cc: Jethro Cao * gnu/packages/game-development.scm (love-nuklear): New variable. --- gnu/packages/game-development.scm | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 833f00b77c..f47e580c27 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -653,6 +653,38 @@ programming language.") (home-page "https://love2d.org/") (license license:zlib))) +(define-public love-nuklear + (let ((version "v2.6") + (commit "fef4e00a602efb16c57ae962850b6e7a01f7a29a")) + (package + (name "love-nuklear") + (version (git-version version "+4commits" commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/keharriso/love-nuklear/") + (commit commit) + (recursive? #t) + ;; NOTE: the Nuklear submodule's HEAD is at commit "adc52d7" of Oct 1 2019 + ;; TODO: package Nuklear, and explicitly specify it as a native (build) input + )) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15qmy8mfwkxy2x9rmxs6f9cyvjvwwj6yf78bs863xmc56dmjzzbn")))) + (build-system cmake-build-system) + (arguments + `(#:build-type "Release" + #:tests? #f)) + (inputs + `(("luajit" ,luajit))) + (synopsis "Lightweight immediate mode GUI for LÖVE games") + (description "LÖVE is a Lua framework for making 2D games. Nuklear +is a minimal state immediate mode graphical user interface toolkit. This +package is the Nuklear bindings for LÖVE created by Kevin Harrison.") + (home-page "https://github.com/keharriso/love-nuklear/") + (license license:expat)))) + (define-public allegro-4 (package (name "allegro") -- 2.20.1