nixpkgs/pkgs/games/pysolfc/default.nix
Morgan Wolfe da4cf04fad pysolfc: 2.6.4 -> 2.16.0
PySolFC 2.6.4 does not build on python >= 3.8. Ten minor versions' worth
of release notes is otherwise too large to fit here.
2022-09-29 10:12:20 -07:00

50 lines
1.5 KiB
Nix

{ lib, fetchzip, buildPythonApplication, python3Packages
, desktop-file-utils, freecell-solver }:
buildPythonApplication rec {
pname = "PySolFC";
version = "2.16.0";
src = fetchzip {
url = "https://versaweb.dl.sourceforge.net/project/pysolfc/PySolFC/PySolFC-${version}/PySolFC-${version}.tar.xz";
sha256 = "sha256-kklB16IrDicxqMee1kbxtoqgwcSrMjCV4HP6GtnZxo8=";
};
cardsets = fetchzip {
url = "https://versaweb.dl.sourceforge.net/project/pysolfc/PySolFC-Cardsets/PySolFC-Cardsets-2.1/PySolFC-Cardsets-2.1.tar.bz2";
sha256 = "sha256-0ji6jY7zJFaaaJdInaULKUou+u934RMzYjxVDGVHbE0=";
};
propagatedBuildInputs = with python3Packages; [
tkinter six random2 configobj
pysol-cards attrs pycotap
# optional :
pygame freecell-solver pillow
];
patches = [
./pysolfc-datadir.patch
];
nativeBuildInputs = [ desktop-file-utils ];
postPatch = ''
desktop-file-edit --set-key Icon --set-value ${placeholder "out"}/share/icons/pysol01.png data/pysol.desktop
desktop-file-edit --set-key Comment --set-value "${meta.description}" data/pysol.desktop
'';
postInstall = ''
mkdir $out/share/PySolFC/cardsets
cp -r $cardsets/* $out/share/PySolFC/cardsets
'';
# No tests in archive
doCheck = false;
meta = with lib; {
description = "A collection of more than 1000 solitaire card games";
homepage = "https://pysolfc.sourceforge.io";
license = licenses.gpl3;
maintainers = with maintainers; [ kierdavis ];
};
}