depot/third_party/nixpkgs/pkgs/games/rftg/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
569 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.gpl2;
maintainers = [ lib.maintainers.falsifian ];
};
}