Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
573 B
Nix
23 lines
573 B
Nix
{ lib, stdenv, fetchurl, gtk2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "rftg";
|
|
version = "0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://keldon.net/rftg/rftg-${version}.tar.bz2";
|
|
sha256 = "0j2y6ggpwdlvyqhirp010aix2g6aacj3kvggvpwzxhig30x9vgq8";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ gtk2.dev ];
|
|
|
|
meta = {
|
|
homepage = "http://keldon.net/rftg/";
|
|
description = "Implementation of the card game Race for the Galaxy, including an AI";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.falsifian ];
|
|
};
|
|
|
|
}
|