about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/hexgui/default.nix
blob: 6fc66b8704390a97f713b44d9412f7e3255d1cda (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
{ ant
, fetchFromGitHub
, jdk
, lib
, makeWrapper
, stdenv
}:
stdenv.mkDerivation {
  pname = "hexgui";
  version = "unstable-2023-1-7";

  src = fetchFromGitHub {
    owner = "selinger";
    repo = "hexgui";
    rev = "62f07ff51db0d4a945ad42f86167cc2f2ce65d90";
    hash = "sha256-yEdZs9HUt3lcrdNO1OH8M8g71+2Ltf+v1RR1fKRDV0o=";
  };

  nativeBuildInputs = [ ant jdk makeWrapper ];
  buildPhase = ''
    ant
  '';

  installPhase = ''
    mkdir $out
    mv bin lib $out
    wrapProgram $out/bin/hexgui --prefix PATH : ${lib.makeBinPath [ jdk ]}
  '';

  meta = {
    description = "GUI for the board game Hex";
    mainProgram = "hexgui";
    homepage = "https://github.com/selinger/hexgui";
    license = lib.licenses.gpl3;
    maintainers = [ lib.maintainers.ursi ];
  };
}