mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rftg: init at 0.9.4
An implementation of the card game Race for the Galaxy, including an AI
This commit is contained in:
parent
b32a1199f8
commit
f6aa2df335
22
pkgs/games/rftg/default.nix
Normal file
22
pkgs/games/rftg/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, gtk2, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "rftg-${version}";
|
||||
version = "0.9.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://keldon.net/rftg/rftg-${version}.tar.bz2";
|
||||
sha256 = "0j2y6ggpwdlvyqhirp010aix2g6aacj3kvggvpwzxhig30x9vgq8";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk2.dev pkgconfig ];
|
||||
|
||||
meta = {
|
||||
homepage = http://keldon.net/rftg/;
|
||||
description = "Implementation of the card game Race for the Galaxy, including an AI";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.falsifian ];
|
||||
};
|
||||
|
||||
}
|
@ -17450,6 +17450,8 @@ with pkgs;
|
||||
openglSupport = mesaSupported;
|
||||
};
|
||||
|
||||
rftg = callPackage ../games/rftg { };
|
||||
|
||||
rigsofrods = callPackage ../games/rigsofrods {
|
||||
angelscript = angelscript_2_22;
|
||||
mygui = mygui.override {
|
||||
|
Loading…
Reference in New Issue
Block a user