summary refs log tree commit diff
path: root/pkgs/games/rftg
diff options
context:
space:
mode:
authorJames Cook <james.cook@utoronto.ca>2017-08-07 22:18:03 -0700
committerJames Cook <james.cook@utoronto.ca>2017-08-08 08:56:29 -0700
commitf6aa2df3355598ee2cdff876287477fa7d923bd3 (patch)
tree726d124db2a2f93a62db691332971117c7bceaeb /pkgs/games/rftg
parentb32a1199f88e64ec3191b0322017b11379c36d90 (diff)
downloadnixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar.gz
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar.bz2
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar.lz
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar.xz
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.tar.zst
nixpkgs-f6aa2df3355598ee2cdff876287477fa7d923bd3.zip
rftg: init at 0.9.4
An implementation of the card game Race for the Galaxy, including an AI
Diffstat (limited to 'pkgs/games/rftg')
-rw-r--r--pkgs/games/rftg/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/games/rftg/default.nix b/pkgs/games/rftg/default.nix
new file mode 100644
index 00000000000..27dabe1deac
--- /dev/null
+++ b/pkgs/games/rftg/default.nix
@@ -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 ];
+  };
+
+}