summary refs log tree commit diff
path: root/pkgs/games/atanks/default.nix
blob: 4b9b097bbb7e77a3b81b6456087f94a0fb4b8d13 (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
{ stdenv, fetchurl, allegro }:

stdenv.mkDerivation rec {
  name = "atanks-${version}";
  version = "6.2";

  src = fetchurl {
    url = "mirror://sourceforge/project/atanks/atanks/${name}/${name}.tar.gz";
    sha256 = "1s1lb87ind0y9d6hmfaf1b9wks8q3hd6w5n9dibq75rxqmcfvlpy";
  };

  buildInputs = [ allegro ];

  patchPhase = ''
    substituteInPlace Makefile --replace /usr $out
  '';

  makeFlags = [ "PREFIX=$(out)/" "INSTALL=install" ];

  meta = with stdenv.lib; {
    description = "Atomic Tanks ballistics game";
    homepage = http://atanks.sourceforge.net/;
    maintainers = [ maintainers.raskin ];
    platforms = platforms.linux;
  };
}