Merge pull request #28031 from falsifian/rftg

rftg: init at 0.9.4

authored by Jörg Thalheim and committed by GitHub fcea56dd f6bfee9f

+24
+22
pkgs/games/rftg/default.nix
···
··· 1 + { stdenv, fetchurl, gtk2, pkgconfig }: 2 + 3 + stdenv.mkDerivation rec { 4 + 5 + name = "rftg-${version}"; 6 + version = "0.9.4"; 7 + 8 + src = fetchurl { 9 + url = "http://keldon.net/rftg/rftg-${version}.tar.bz2"; 10 + sha256 = "0j2y6ggpwdlvyqhirp010aix2g6aacj3kvggvpwzxhig30x9vgq8"; 11 + }; 12 + 13 + buildInputs = [ gtk2.dev pkgconfig ]; 14 + 15 + meta = { 16 + homepage = http://keldon.net/rftg/; 17 + description = "Implementation of the card game Race for the Galaxy, including an AI"; 18 + license = stdenv.lib.licenses.gpl2; 19 + maintainers = [ stdenv.lib.maintainers.falsifian ]; 20 + }; 21 + 22 + }
+2
pkgs/top-level/all-packages.nix
··· 17445 openglSupport = mesaSupported; 17446 }; 17447 17448 rigsofrods = callPackage ../games/rigsofrods { 17449 angelscript = angelscript_2_22; 17450 mygui = mygui.override {
··· 17445 openglSupport = mesaSupported; 17446 }; 17447 17448 + rftg = callPackage ../games/rftg { }; 17449 + 17450 rigsofrods = callPackage ../games/rigsofrods { 17451 angelscript = angelscript_2_22; 17452 mygui = mygui.override {