FreeCell-Solver: init at 3.26.0
This commit is contained in:
parent
6513e09093
commit
1810c3dd42
30
pkgs/games/freecell-solver/default.nix
Normal file
30
pkgs/games/freecell-solver/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -13611,6 +13611,8 @@ let
|
|||||||
|
|
||||||
flightgear = callPackage ../games/flightgear { };
|
flightgear = callPackage ../games/flightgear { };
|
||||||
|
|
||||||
|
freecell-solver = callPackage ../games/freecell-solver { };
|
||||||
|
|
||||||
freeciv = callPackage ../games/freeciv { };
|
freeciv = callPackage ../games/freeciv { };
|
||||||
|
|
||||||
freeciv_gtk = callPackage ../games/freeciv {
|
freeciv_gtk = callPackage ../games/freeciv {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user