depot/third_party/nixpkgs/pkgs/games/rftg/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
576 B
Nix

{ stdenv, fetchurl, gtk2, pkgconfig }:
stdenv.mkDerivation rec {
pname = "rftg";
version = "0.9.4";
src = fetchurl {
url = "http://keldon.net/rftg/rftg-${version}.tar.bz2";
sha256 = "0j2y6ggpwdlvyqhirp010aix2g6aacj3kvggvpwzxhig30x9vgq8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2.dev ];
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 ];
};
}