nixpkgs/pkgs/games/xbomb/default.nix

23 lines
591 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libX11, libXaw }:
2015-04-30 02:22:39 +03:00
stdenv.mkDerivation rec {
name = "xbomb-2.2b";
src = fetchurl {
url = "https://www.gedanken.org.uk/software/xbomb/download/${name}.tgz";
2015-04-30 02:22:39 +03:00
sha256 = "0692gjw28qvh8wj9l58scjw6kxj7jdyb3yzgcgs9wcznq11q839m";
};
buildInputs = [ libX11 libXaw ];
makeFlags = [
"INSTDIR=${placeholder "out"}"
];
2015-04-30 02:22:39 +03:00
meta = with lib; {
homepage = "http://www.gedanken.org.uk/software/xbomb/";
2015-04-30 02:22:39 +03:00
description = "Minesweeper for X11 with various grid sizes and shapes";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}