forked from mirrors/nixpkgs
gnome-mines: init at 3.16.1
This commit is contained in:
parent
fd75bf0c7d
commit
99f32bad76
|
@ -36,6 +36,7 @@ let
|
|||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||
tali quadrapassel gnome-sudoku aisleriot five-or-more
|
||||
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
|
||||
gnome-mines
|
||||
];
|
||||
|
||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
|
@ -309,6 +310,8 @@ let
|
|||
|
||||
gnome-mahjongg = callPackage ./games/gnome-mahjongg { };
|
||||
|
||||
gnome-mines = callPackage ./games/gnome-mines { };
|
||||
|
||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||
|
||||
iagno = callPackage ./games/iagno { };
|
||||
|
|
24
pkgs/desktops/gnome-3/3.16/games/gnome-mines/default.nix
Normal file
24
pkgs/desktops/gnome-3/3.16/games/gnome-mines/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||
, librsvg, intltool, itstool, libxml2, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-mines-${gnome3.version}.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-mines/${gnome3.version}/${name}.tar.xz";
|
||||
sha256 = "0f0496nhirvpw4zk8bcl24rb2v20cm3gw8d5ybmch42mscmjrb0p";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2
|
||||
hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Mines;
|
||||
description = "Clear hidden mines from a minefield";
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue