From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51717) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hs3to-00006B-8g for guix-patches@gnu.org; Mon, 29 Jul 2019 07:33:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hs3tn-0000NJ-0u for guix-patches@gnu.org; Mon, 29 Jul 2019 07:33:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38936) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hs3tm-0000Mp-3j for guix-patches@gnu.org; Mon, 29 Jul 2019 07:33:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hs3tl-0003SO-VA for guix-patches@gnu.org; Mon, 29 Jul 2019 07:33:02 -0400 Subject: [bug#36824] [PATCH] gnu: Add oshu. Resent-Message-ID: References: <20190727181841.4147-1-dfrumin@cs.ru.nl> From: Dan Frumin Message-ID: Date: Mon, 29 Jul 2019 13:32:04 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------B11E019FC9C784B26E80568E" Content-Language: en-US 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, me@tobias.gr This is a multi-part message in MIME format. --------------B11E019FC9C784B26E80568E Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi Tobias, Thank you for your timely reply. (As a side note, can you please CC the messages to me, because I am not subscribed to the guix-patches mailing list. Maybe I am using debbugs in some wrong way). > I'd rather see a 'first-class' description of what this game is > and does and drop the 'is a clone of' part entirely: 'is capable > of playing the original Osu! beatmaps' already says it all without > implying it's some kind of knock-off ;-) That's a good point. I changed the description to something more appropriate. > s/videocard/video card/, or graphics card. Is it really tied to > the kernel? (Not entirely implausible considering the real-time > audio nature. Interesting design, by the way.) Oops, I didn't mean to say that it's tied to the Linux kernel (although I don't think it's developed/tested on other platforms). I just wanted to contrast that with the old original Osu! game which is for Windows. > Could we package these separately? How are they licenced? I am not sure. You basically have to download them manually from the Osu! website or from other places on the web. I don't think they are licensed very well at all.. > Ugh, no licence headers? I guess that does make it GPL 3-only, > but I'm no expert. Yeah I am not sure about the headers, but the COPYING file indicates that it's GPL 3 Best, Dan --------------B11E019FC9C784B26E80568E Content-Type: text/x-patch; name="0001-gnu-Add-oshu.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-Add-oshu.patch" >From e54fb4dca4988747c5c41a1081d25cdae524dd55 Mon Sep 17 00:00:00 2001 From: Dan Frumin Date: Sat, 27 Jul 2019 20:18:22 +0200 Subject: [PATCH] gnu: Add oshu. --- gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a17ac9728c..78b951b702 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6374,6 +6374,41 @@ 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 "Rhythm game in which you click on circles") + (description "Oshu! is a free clone of the Osu! rhythm game, designed to +be run on GNU/Linux without requiring a powerful graphics card. 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 --------------B11E019FC9C784B26E80568E--