about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/20kly/default.nix
blob: c2ab350195162d39ba8514278d934a487b79d4c2 (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
40
41
42
43
44
45
46
47
{ lib
, fetchFromGitHub
, python3Packages
}:

python3Packages.buildPythonApplication rec {
  pname = "20kly";
  version = "1.5.0";

  format = "other";

  src = fetchFromGitHub {
    owner = "20kly";
    repo = "20kly";
    rev = "v${version}";
    sha256 = "1zxsxg49a02k7zidx3kgk2maa0vv0n1f9wrl5vch07sq3ghvpphx";
  };

  patchPhase = ''
    substituteInPlace lightyears \
      --replace \
        "LIGHTYEARS_DIR = \".\"" \
        "LIGHTYEARS_DIR = \"$out/share\""
  '';

  propagatedBuildInputs = with python3Packages; [
    pygame
  ];

  buildPhase = ''
    python -O -m compileall .
  '';

  installPhase = ''
    mkdir -p "$out/share"
    cp -r data lib20k lightyears "$out/share"
    install -Dm755 lightyears "$out/bin/lightyears"
  '';

  meta = with lib; {
    description = "A steampunk-themed strategy game where you have to manage a steam supply network";
    mainProgram = "lightyears";
    homepage = "http://jwhitham.org.uk/20kly/";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ fgaz ];
  };
}