Skip to content

Commit

Permalink
PySolFC: init at 2.0
Browse files Browse the repository at this point in the history
PySolFC is a solitaire game written in Python, supporting thousands of
solitaire variants.
  • Loading branch information
kierdavis authored and FRidh committed Nov 25, 2017
1 parent e234907 commit cb9bf1c
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pkgs/games/pysolfc/default.nix
@@ -0,0 +1,39 @@
{ fetchurl, python2, stdenv }:

with python2.pkgs;

buildPythonApplication rec {
pname = "PySolFC";
version = "2.0";

src = fetchurl {
url = "mirror://sourceforge/pysolfc/${pname}-${version}.tar.bz2";
sha256 = "0v0v8iflw55f5mghglkw80j8b7lv1hffjassfhqc4y84dmz8xjyv";
};

patches = [
./pysolfc-datadir.patch
];

propagatedBuildInputs = [
tkinter
];

# No tests in archive
doCheck = false;

postInstall = ''
# executables should not have an extension
pushd $out/bin
mv pysol.py pysol
rm pysol.pyc
popd
'';

meta = with stdenv.lib; {
description = "A collection of more than 1000 solitaire card games";
homepage = http://pysolfc.sourceforge.net/;
license = licenses.gpl3;
maintainers = with maintainers; [ kierdavis ];
};
}
19 changes: 19 additions & 0 deletions pkgs/games/pysolfc/pysolfc-datadir.patch
@@ -0,0 +1,19 @@
diff --git a/pysollib/util.py b/pysollib/util.py
index 8de3f00..26f4bc7 100644
--- a/pysollib/util.py
+++ b/pysollib/util.py
@@ -110,13 +110,7 @@ class DataLoader:
head, tail = os.path.split(argv0)
if not head:
head = os.curdir
- # dir where placed startup script
- path.append(head)
- path.append(os.path.join(head, "data"))
- path.append(os.path.join(head, os.pardir, "data"))
- # dir where placed pysol package
- path.append(os.path.join(sys.path[0], "data"))
- path.append(os.path.join(sys.path[0], "pysollib", "data"))
+ path.append(os.path.join(head, "..", "share", "PySolFC"))
# from settings.py
path.extend(DATA_DIRS)
# check path for valid directories
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -18080,6 +18080,8 @@ with pkgs;

privateer = callPackage ../games/privateer { };

pysolfc = callPackage ../games/pysolfc { };

qweechat = callPackage ../applications/networking/irc/qweechat { };

qqwing = callPackage ../games/qqwing { };
Expand Down

0 comments on commit cb9bf1c

Please sign in to comment.