Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / rftg / default.nix
blob1dfeaf3c3a8985fe8395b3f1b8457ea4c1eccde5
1 { lib, stdenv, fetchurl, gtk2, pkg-config }:
3 stdenv.mkDerivation rec {
5   pname = "rftg";
6   version = "0.9.4";
8   src = fetchurl {
9     url = "http://keldon.net/rftg/rftg-${version}.tar.bz2";
10     sha256 = "0j2y6ggpwdlvyqhirp010aix2g6aacj3kvggvpwzxhig30x9vgq8";
11   };
13   nativeBuildInputs = [ pkg-config ];
14   buildInputs = [ gtk2.dev ];
16   meta = {
17     homepage = "http://keldon.net/rftg/";
18     description = "Implementation of the card game Race for the Galaxy, including an AI";
19     license = lib.licenses.gpl2;
20     maintainers = [ lib.maintainers.falsifian ];
21   };