From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50324) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dMeH1-00054H-9G for guix-patches@gnu.org; Sun, 18 Jun 2017 13:46:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dMeGx-0007PX-05 for guix-patches@gnu.org; Sun, 18 Jun 2017 13:46:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52627) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dMeGw-0007PS-SS for guix-patches@gnu.org; Sun, 18 Jun 2017 13:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dMeGw-0002Am-IT for guix-patches@gnu.org; Sun, 18 Jun 2017 13:46:02 -0400 Subject: [bug#27421] [PATCH 1/5] gnu: Add nml. References: <87injt42pu.fsf@openmailbox.org> In-Reply-To: <87injt42pu.fsf@openmailbox.org> Resent-Message-ID: From: Kei Kebreau Date: Sun, 18 Jun 2017 13:44:43 -0400 Message-Id: <20170618174443.32690-1-kei@openmailbox.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: 27421@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/game-development.scm (nml): New variable. --- gnu/packages/game-development.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 18ce2ae4a..034713596 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -189,6 +189,30 @@ and network communications. A very thin client library can be embedded to provide connectivity for client applications written in any language.") (license license:gpl3+))) +(define-public nml + (package + (name "nml") + (version "0.4.4") + (source + (origin + (method url-fetch) + (uri (string-append "http://bundles.openttdcoop.org/nml/releases/" + version "/nml-" version ".tar.gz")) + (sha256 + (base32 + "0wk9ls5qyjwkra54rkj1gg94xbwzi7b84a5fh1ma1q7pbimi8rmg")))) + (build-system python-build-system) + (inputs + `(("python-pillow" ,python-pillow) + ("python-ply" ,python-ply))) + (home-page "http://dev.openttdcoop.org/projects/nml") + (synopsis "NML compiler") + (description + "NML is a a python-based compiler, capable of compiling NML files (along +with their associated language, sound and graphic files) into grf and/or nfo +files.") + (license license:gpl2+))) + (define-public python-sge-pygame (package (name "python-sge-pygame") -- 2.13.0