summary refs log tree commit diff
path: root/pkgs/games/xbomb/default.nix
blob: 54d6c320f187291300946ad91c0252273d35c19b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, libX11, libXaw }:

stdenv.mkDerivation rec {
  name = "xbomb-2.2b";
  src = fetchurl {
    url    = "https://www.gedanken.org.uk/software/xbomb/download/${name}.tgz";
    sha256 = "0692gjw28qvh8wj9l58scjw6kxj7jdyb3yzgcgs9wcznq11q839m";
  };

  buildInputs = [ libX11 libXaw ];

  makeFlags = [
    "INSTDIR=${placeholder ''out''}"
  ];

  meta = with stdenv.lib; {
    homepage = http://www.gedanken.org.uk/software/xbomb/;
    description = "Minesweeper for X11 with various grid sizes and shapes";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
}