diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-26 13:43:35 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-26 13:44:00 +0100 |
commit | b1aee9fce2d4177dc0eb41c8509d50a131a19655 (patch) | |
tree | 77b7c6d3a11e60689d1f49e9caf6319e20b92ad3 /gnu/packages/games.scm | |
parent | f6a21d61deecc37f8c900f2d2acf01475b917d10 (diff) | |
download | guix-b1aee9fce2d4177dc0eb41c8509d50a131a19655.tar guix-b1aee9fce2d4177dc0eb41c8509d50a131a19655.tar.gz |
gnu: btanks: Rename package to battle-tanks.
* gnu/packages/games.scm (btanks): Define in terms of
'deprecated-package'.
(battle-tanks): New variable, formerly known as "btanks".
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index c7cf618c0b..c613b751a2 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6185,9 +6185,9 @@ to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory.") (home-page "https://www.stepmania.com") (license license:expat))) -(define-public btanks +(define-public battle-tanks (package - (name "btanks") + (name "battle-tanks") (version "0.9.8083") (source (origin @@ -6261,15 +6261,19 @@ to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory.") ("zip" ,zip))) (home-page "http://btanks.sourceforge.net") (synopsis "Multiplayer tank battle game") - (description "Battle Tanks is a funny battle game, where you can choose -one of three vehicles and eliminate your enemy using the whole arsenal of -weapons. It has original cartoon-like graphics and cool music, it’s fun and -dynamic, it has several network modes for deathmatch and cooperative.") + (description "Battle Tanks (also known as \"btanks\") is a funny battle +game, where you can choose one of three vehicles and eliminate your enemy +using the whole arsenal of weapons. It has original cartoon-like graphics and +cool music, it’s fun and dynamic, it has several network modes for deathmatch +and cooperative.") ;; Some parts (e.g. mrt/b64.cpp) are LGPLv2.1+, but the whole package is ;; released under GPLv2 or later. It comes with extra exceptions for the ;; developers. (license (list license:gpl2+ license:lgpl2.1+)))) +(define-public btanks + (deprecated-package "btanks" battle-tanks)) + (define-public slingshot (package (name "slingshot") |