mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ballerburg: init at 1.2.0 (#132824)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
d00f146ca5
commit
ba2cb8365c
26
pkgs/games/ballerburg/default.nix
Normal file
26
pkgs/games/ballerburg/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, stdenv, fetchurl, cmake, SDL }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ballerburg";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://download.tuxfamily.org/baller/ballerburg-${version}.tar.gz";
|
||||||
|
sha256 = "sha256-BiX0shPBGA8sshee8rxs41x+mdsrJzBqhpDDic6sYwA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ SDL ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Classic cannon combat game";
|
||||||
|
longDescription = ''
|
||||||
|
Two castles, separated by a mountain, try to defeat each other with their cannonballs,
|
||||||
|
either by killing the opponent's king or by weakening the opponent enough so that the king capitulates.'';
|
||||||
|
homepage = "https://baller.tuxfamily.org/";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = [ maintainers.j0hax ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -23379,6 +23379,8 @@ in
|
|||||||
|
|
||||||
backintime = backintime-qt;
|
backintime = backintime-qt;
|
||||||
|
|
||||||
|
ballerburg = callPackage ../games/ballerburg { } ;
|
||||||
|
|
||||||
balsa = callPackage ../applications/networking/mailreaders/balsa { };
|
balsa = callPackage ../applications/networking/mailreaders/balsa { };
|
||||||
|
|
||||||
bandwidth = callPackage ../tools/misc/bandwidth { };
|
bandwidth = callPackage ../tools/misc/bandwidth { };
|
||||||
|
Loading…
Reference in New Issue
Block a user