summary refs log blame commit diff
path: root/pkgs/games/bitsnbots/default.nix
blob: c6c5176ecdf8b729f5159c6bc6d0a1cadd576b99 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                              














                                                                         
                                                  









                                                              
                                         


                                                          
                                                      
                                           


                                                 
{ stdenv, fetchurl, SDL, lua, libGLU, libGL }:

stdenv.mkDerivation rec {
  name = "bitsnbots-20111230";

  src = fetchurl {
    url = http://moikmellah.org/downloads/bitsnbots/bitsnbots.source.tgz;
    sha256 = "1iiclm6bfpp2p6d692hpnw25xyr48ki1xkcxa7fvh5b7m1519gsp";
  };

  patchPhase = ''
    sed -i '/^INCLUDE/d' Makefile.linux
  '';

  makefile = "Makefile.linux";

  NIX_CFLAGS_COMPILE = "-I${SDL.dev}/include/SDL";

  NIX_LDFLAGS = "-lGL";

  installPhase = ''
    mkdir -p $out/share/${name}
    cp -R bitsnbots resource scripts README $out/share/${name}
    mkdir -p $out/bin
    ln -s $out/share/${name}/bitsnbots $out/bin
  '';

  buildInputs = [ SDL lua libGLU libGL ];

  meta = {
    description = "Simple puzzle game with moving robots";
    homepage = http://moikmellah.org/blog/?page_id=19;
    license = stdenv.lib.licenses.gpl3Plus;
    platforms = with stdenv.lib.platforms; linux;
  };
}