From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41135) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrRIZ-0000cE-B7 for guix-patches@gnu.org; Sat, 27 Jul 2019 14:20:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hrRIY-0003cE-8T for guix-patches@gnu.org; Sat, 27 Jul 2019 14:20:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36579) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hrRIY-0003c7-5k for guix-patches@gnu.org; Sat, 27 Jul 2019 14:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hrRIX-0001wj-VU for guix-patches@gnu.org; Sat, 27 Jul 2019 14:20:02 -0400 Subject: [bug#36824] [PATCH] gnu: Add oshu. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:40972) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrRHV-0000Yr-FK for guix-patches@gnu.org; Sat, 27 Jul 2019 14:18:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hrRHU-00031D-Bc for guix-patches@gnu.org; Sat, 27 Jul 2019 14:18:57 -0400 Received: from smtp2.science.ru.nl ([131.174.16.145]:42166) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hrRHU-0002z9-2n for guix-patches@gnu.org; Sat, 27 Jul 2019 14:18:56 -0400 From: Dan Frumin Date: Sat, 27 Jul 2019 20:18:41 +0200 Message-Id: <20190727181841.4147-1-dfrumin@cs.ru.nl> 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: 36824@debbugs.gnu.org Cc: Dan Frumin --- gnu/packages/games.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a17ac9728c..3bb17c5735 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6374,6 +6374,40 @@ to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory.") (home-page "https://www.stepmania.com") (license license:expat))) +(define-public oshu + (package + (name "oshu") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fmang/oshu.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "01w1x46hh36idjl94xd18dwppp0y30qxmb498gp7hnjzy205q6rw")))) + (build-system cmake-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("sdl2" ,sdl2) + ("sdl2-image" ,sdl2-image) + ("ffmpeg" ,ffmpeg) + ("cairo" ,cairo) + ("pango" ,pango))) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; `make test' doesn't actually build the test executable + (add-before 'check 'zerotokei + (lambda _ (invoke "make" "zerotokei")))))) + (home-page "https://github.com/fmang/oshu/") + (synopsis "Clone of the Osu! rhythm game") + (description "Oshu! is a free clone of the Osu! rhythm game, designed to +be run on GNU/Linux without requiring a powerful videocard. Oshu! is capable +of playing the original Osu! beatmaps (not included in this package). ") + (license license:gpl3))) + (define-public btanks (package (name "btanks") -- 2.17.1