summary refs log tree commit diff
path: root/pkgs/games/xbomb/default.nix
blob: 946bff79f975775ce228135d4ad70bf2eb92037c (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
{ 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 ];

  preBuild = ''
    substituteInPlace Makefile \
      --replace /usr/local $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;
  };
}