summary refs log tree commit diff
path: root/pkgs/servers/games/ghost-one/default.nix
blob: f90b5e4099734c7e13330ec84b4ddafde2150be5 (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
48
49
50
51
52
53
{ stdenv, fetchurl, unzip, gmp, zlib, bzip2, boost, mysql }:
stdenv.mkDerivation rec {

  name = "ghost-one-${version}";
  version = "1.7.265";

  src = fetchurl {
    url = "http://www.maxdevlon.com/ghost/ghostone${version}.zip";
    sha256 = "1sm2ca3lcdr4vjg7v94d8zhqz8cdp44rg8yinzzwkgsr0hj74fv2";
  };

  buildInputs = [ unzip gmp zlib bzip2 boost mysql ];

  patchPhase = ''
    substituteInPlace ghost/Makefile --replace "/usr/local/lib/mysql" "${mysql}/lib/mysql"
  '';

  buildPhase = ''
    cd bncsutil/src/bncsutil
    make
    cd ../../../StormLib/stormlib/
    make
    mkdir -p $out/lib
    cd ../..
#    cp bncsutil/src/bncsutil/libbncutil.so $out/lib
#    cp StormLib/stormlib/libStorm.so $out/lib
    cd ghost
    make
    cd ..
  '';

  installPhase = ''
    mkdir -p $out/lib
    cp bncsutil/src/bncsutil/libbncsutil.so $out/lib
    cp StormLib/stormlib/libStorm.so $out/lib

    mkdir -p $out/bin
    cp ghost/ghost++ $out/bin

    mkdir -p $out/share/ghost-one/languages
    cp -r mapcfgs $out/share/ghost-one
    cp Languages/*.cfg $out/share/ghost-one/languages
    cp language.cfg $out/share/ghost-one/languages/English.cfg
    cp ip-to-country.csv $out/share/ghost-one/
  '';

  meta = with stdenv.lib; {
    homepage = http://www.codelain.com/forum/;
    description = "A Warcraft III: Reign of Chaos and Warcraft III: The Frozen Throne game hosting bot";
    license = licenses.asl20;
    maintainers = [ maintainers.phreedom ];
  };
}