summary refs log tree commit diff
path: root/pkgs/games/pysolfc/default.nix
blob: 85424ebea9ba6c14c74abc269b15737c09405c7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 ];
  };
}