about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/xbomb/default.nix
blob: 92227ec1ebd1809f083a204623159ce33be8aa21 (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
{ lib, stdenv, fetchurl, libX11, libXaw }:

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

  buildInputs = [ libX11 libXaw ];

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

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