mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
commit
72550060dc
23
pkgs/games/xbomb/default.nix
Normal file
23
pkgs/games/xbomb/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, libX11, libXaw }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xbomb-2.2b";
|
||||
src = fetchurl {
|
||||
url = "http://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;
|
||||
};
|
||||
}
|
@ -9993,6 +9993,8 @@ let
|
||||
|
||||
wpa_supplicant_gui = callPackage ../os-specific/linux/wpa_supplicant/gui.nix { };
|
||||
|
||||
xbomb = callPackage ../games/xbomb { };
|
||||
|
||||
xf86_input_mtrack = callPackage ../os-specific/linux/xf86-input-mtrack {
|
||||
inherit (xorg) utilmacros xproto inputproto xorgserver;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user