FreeCell-Solver: init at 3.26.0

This commit is contained in:
AndersonTorres 2015-08-03 21:53:33 -03:00
parent 6513e09093
commit 1810c3dd42
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchurl, pkgconfig, cmake, perl, gmp, libtap, perlPackages }:
with stdenv.lib;
stdenv.mkDerivation rec{
name = "freecell-solver-${version}";
version = "3.26.0";
src = fetchurl {
url = "http://fc-solve.shlomifish.org/downloads/fc-solve/${name}.tar.bz2";
sha256 = "0pm6xk4fmwgzva70qxb0pqymdfvpasnvqiwwmm8hpx7g37y11wqk";
};
buildInputs = [ pkgconfig cmake perl gmp libtap
perlPackages.TemplateToolkit perlPackages.StringShellQuote
perlPackages.GamesSolitaireVerify ];
meta = {
description = "A FreeCell automatic solver";
longDescription = ''
FreeCell Solver is a program that automatically solves layouts
of Freecell and similar variants of Card Solitaire such as Eight
Off, Forecell, and Seahaven Towers, as well as Simple Simon
boards.
'';
homepage = http://fc-solve.shlomifish.org/;
license = licenses.mit;
maintainers = [ maintainers.AndersonTorres ];
};
}

View file

@ -13611,6 +13611,8 @@ let
flightgear = callPackage ../games/flightgear { };
freecell-solver = callPackage ../games/freecell-solver { };
freeciv = callPackage ../games/freeciv { };
freeciv_gtk = callPackage ../games/freeciv {