summaryrefslogtreecommitdiff
path: root/pkgs/games/bugdom/default.nix
blob: 3c47f02131c2a874cfb496e1730ccd83768f1873 (about) (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
  lib,
  stdenv,
  fetchFromGitHub,
  SDL2,
  IOKit,
  Foundation,
  OpenGL,
  cmake,
  makeWrapper,
}:

stdenv.mkDerivation rec {
  pname = "bugdom";
  version = "1.3.4";

  src = fetchFromGitHub {
    owner = "jorio";
    repo = pname;
    rev = version;
    hash = "sha256-0c7v5tSqYuqtLOFl4sqD7+naJNqX/wlKHVntkZQGJ8A=";
    fetchSubmodules = true;
  };

  postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
    # Expects SDL2.framework in specific location, which we don't have
    # Passing this in cmakeFlags doesn't work because the path is hard-coded for Darwin
    substituteInPlace cmake/FindSDL2.cmake \
      --replace 'set(SDL2_LIBRARIES' 'set(SDL2_LIBRARIES "${SDL2}/lib/libSDL2.dylib") #'
    # Expects plutil, which we don't have
    sed -i '/plutil/d' CMakeLists.txt
  '';

  buildInputs =
    [
      SDL2
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      IOKit
      Foundation
      OpenGL
    ];

  nativeBuildInputs = [
    cmake
    makeWrapper
  ];

  cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
    "-DCMAKE_OSX_ARCHITECTURES=${stdenv.hostPlatform.darwinArch}"
    # Expects SDL2.framework in specific location, which we don't have
    "-DSDL2_INCLUDE_DIRS=${lib.getInclude SDL2}/include/SDL2"
  ];

  installPhase =
    ''
      runHook preInstall

    ''
    + (
      if stdenv.hostPlatform.isDarwin then
        ''
          mkdir -p $out/{bin,Applications}
          mv {,$out/Applications/}Bugdom.app
          makeWrapper $out/{Applications/Bugdom.app/Contents/MacOS,bin}/Bugdom
        ''
      else
        ''
          mkdir -p $out/share/bugdom
          mv Data $out/share/bugdom
          install -Dm755 {.,$out/bin}/Bugdom
          wrapProgram $out/bin/Bugdom --run "cd $out/share/bugdom"
          install -Dm644 $src/packaging/io.jor.bugdom.desktop $out/share/applications/io.jor.bugdom.desktop
          install -Dm644 $src/packaging/io.jor.bugdom.png $out/share/pixmaps/io.jor.bugdom.png
        ''
    )
    + ''

      runHook postInstall
    '';

  meta = with lib; {
    description = "Port of Bugdom, a 1999 Macintosh game by Pangea Software, for modern operating systems";
    homepage = "https://github.com/jorio/Bugdom";
    license = with licenses; [ cc-by-sa-40 ];
    maintainers = with maintainers; [ lux ];
    mainProgram = "Bugdom";
    platforms = platforms.unix;
  };
}